summaryrefslogtreecommitdiffstats
path: root/src/include/fake-stdlib.h
diff options
context:
space:
mode:
authorJohn Carr <jfc@mit.edu>1990-12-20 14:53:51 +0000
committerJohn Carr <jfc@mit.edu>1990-12-20 14:53:51 +0000
commit010c6065fbd000c75580a14f24ccd345af145318 (patch)
tree20d1171b430bbd0492936422ad11830b4221ed64 /src/include/fake-stdlib.h
parent3893176ccc1ab6b703647e7a61d7125266e83036 (diff)
downloadkrb5-010c6065fbd000c75580a14f24ccd345af145318.tar.gz
krb5-010c6065fbd000c75580a14f24ccd345af145318.tar.xz
krb5-010c6065fbd000c75580a14f24ccd345af145318.zip
Add some prototypes for the IBM RT
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1581 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/fake-stdlib.h')
-rw-r--r--src/include/fake-stdlib.h15
1 files 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