summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/isode/h/general.h31
1 files changed, 8 insertions, 23 deletions
diff --git a/src/isode/h/general.h b/src/isode/h/general.h
index feaa247f4..94233fa5e 100644
--- a/src/isode/h/general.h
+++ b/src/isode/h/general.h
@@ -3,24 +3,6 @@
/*
* $Header$
*
- *
- * $Log$
- * Revision 1.1 1994/06/10 03:29:17 eichin
- * autoconfed isode for kerberos work
- *
- * Revision 1.1 94/06/10 03:17:42 eichin
- * autoconfed isode for kerberos work
- *
- * Revision 1.3 1994/06/07 23:08:23 eichin
- * hide calloc/malloc/realloc from ultrix too
- *
- * Revision 1.1 1994/05/31 20:37:55 eichin
- * reduced-isode release from /mit/isode/isode-subset/src
- *
- * Revision 8.0 91/07/17 12:33:44 isode
- * Release 7.0
- *
- *
*/
/*
@@ -161,14 +143,17 @@ char *mktemp ();
#endif /* SVR4 */
#ifdef __STDC__
-#include <malloc.h>
+#include <stdlib.h>
+#else
+/* ultrix cc isn't STD but has stdlib.h, with malloc... */
+#ifdef mips
+#include <stdlib.h>
#else
#ifndef _AIX
-#ifndef mips
char *calloc (), *malloc (), *realloc ();
-#endif
-#endif
-#endif
+#endif /* _AIX */
+#endif /* mips */
+#endif /* __STDC__ */
#ifndef BSDSTRS