Change RT prototypes: char * -> void *; add atof() and atoi()
authorJohn Carr <jfc@mit.edu>
Wed, 3 Apr 1991 15:38:08 +0000 (15:38 +0000)
committerJohn Carr <jfc@mit.edu>
Wed, 3 Apr 1991 15:38:08 +0000 (15:38 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1987 dc483132-0cff-0310-8789-dd5450dbe970

src/include/fake-stdlib.h

index d52fe3fe6c61ca71fe545d2f5451557e8bbd1f42..6b687bc9034b6a2b143846202626da2ddb62408f 100644 (file)
@@ -677,12 +677,16 @@ extern char *memcpy P((char *, const char *, int));
 #ifndef memset
 extern char *memset P((char *, int, int));
 #endif
-extern char *calloc P((unsigned int, unsigned int));
-extern char *malloc P((unsigned int));
-extern char *realloc P((char *, unsigned int));
-extern void free P((char *));
+extern void *calloc P((unsigned int, unsigned int));
+extern void *malloc P((unsigned int));
+extern void *realloc P((void *, unsigned int));
+extern void free P((void *));
 extern void abort P((void));
 extern char *getenv P((const char *));
+
+extern double atof P((const char *));
+extern int    atoi P((const char *));
+
 #endif /* ibm032 */
 
 #undef P