From 010c6065fbd000c75580a14f24ccd345af145318 Mon Sep 17 00:00:00 2001 From: John Carr Date: Thu, 20 Dec 1990 14:53:51 +0000 Subject: [PATCH] Add some prototypes for the IBM RT git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1581 dc483132-0cff-0310-8789-dd5450dbe970 --- src/include/fake-stdlib.h | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/include/fake-stdlib.h b/src/include/fake-stdlib.h index 97e27ae8e..0cd0e3f54 100644 --- a/src/include/fake-stdlib.h +++ b/src/include/fake-stdlib.h @@ -386,9 +386,6 @@ char *crypt P((char * , char * )); #ifndef SYSTEM_FIVE void encrypt P((char * )); #endif -char *ctime P((long * )); -struct tm *localtime P((long * )); -struct tm *gmtime P((long * )); #ifndef SYSTEM_FIVE char *timezone P((int , int )); #endif @@ -569,7 +566,6 @@ int re_exec P((char * )); void openlog P((const char * , int, int )); /* our local version... */ void syslog P((int , const char *, ... )); void closelog P((void )); -long time P((long * )); char *valloc P((unsigned )); int vlimit P((int , int )); #endif @@ -655,4 +651,15 @@ void qsort P((char * , unsigned , unsigned , int (* )())); #endif #endif /* MIPS/Ultrix */ + +#ifdef ibm032 +extern char *memcpy(char *, const char *, int); +extern char *memset(char *, int, int); +extern char *malloc(unsigned int); +extern char *realloc(char *, unsigned int); +extern void free(char *); +extern void abort(void); +extern char *getenv(const char *); +#endif /* ibm032 */ + #undef P -- 2.26.2