Remove snprintf.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@570 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1996-06-08 21:53:03 +00:00
parent 0886fe95f3
commit 025c5d9156
2 changed files with 4 additions and 8 deletions

View File

@@ -3,6 +3,8 @@
#ifndef __ROKEN_H__
#define __ROKEN_H__
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <netinet/in.h>
@@ -35,10 +37,6 @@ typedef RETSIGTYPE (*SigAction)(/* int??? */);
SigAction signal(int iSig, SigAction pAction); /* BSD compatible */
#endif
#ifndef HAVE_SNPRINTF
int snprintf(char *s, int n, const char *fmt, ...);
#endif
#ifndef HAVE_STRERROR
char *strerror(int eno);
#endif

View File

@@ -3,6 +3,8 @@
#ifndef __ROKEN_H__
#define __ROKEN_H__
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <netinet/in.h>
@@ -35,10 +37,6 @@ typedef RETSIGTYPE (*SigAction)(/* int??? */);
SigAction signal(int iSig, SigAction pAction); /* BSD compatible */
#endif
#ifndef HAVE_SNPRINTF
int snprintf(char *s, int n, const char *fmt, ...);
#endif
#ifndef HAVE_STRERROR
char *strerror(int eno);
#endif