summaryrefslogtreecommitdiff
path: root/h
diff options
context:
space:
mode:
authorGravatar John F. Carr <jfc@mit.edu>1991-06-20 07:35:05 +0000
committerGravatar John F. Carr <jfc@mit.edu>1991-06-20 07:35:05 +0000
commit3fe22e1276f026ed6f9617e13ee6b7e5f2270b51 (patch)
tree1aa4cbf4aa04f3d43827cb49b2a6bb44f363d82f /h
parentce356da5947c2efa03e0cb8999e0e589e801c606 (diff)
Eliminate code in #ifdef NO_MALLOC_ZERO.
Diffstat (limited to 'h')
-rw-r--r--h/zephyr/zephyr_internal.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/h/zephyr/zephyr_internal.h b/h/zephyr/zephyr_internal.h
index 265af55..b8b1af4 100644
--- a/h/zephyr/zephyr_internal.h
+++ b/h/zephyr/zephyr_internal.h
@@ -84,27 +84,15 @@ extern int __subscriptions_next;
extern int krb_err_base;
#endif
-#ifdef NO_MALLOC_ZERO
-#ifdef __STDC__
-extern void * (*Z_malloc) ();
-#else
-extern char * (*Z_malloc) ();
-#endif
-#undef malloc
-#define malloc(N) ((*Z_malloc)(N))
-#endif
-
#ifdef __cplusplus
extern "C" {
#endif
-#ifndef NO_MALLOC_ZERO
#if defined(__STDC__) || defined(__cplusplus)
extern void *malloc (unsigned);
#else
extern char *malloc();
#endif
-#endif
extern time_t time Zproto((time_t *));
extern long random();