aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/s/osf1.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/s/osf1.h b/src/s/osf1.h
index a8c8dbe6b3a..76942df6413 100644
--- a/src/s/osf1.h
+++ b/src/s/osf1.h
@@ -17,3 +17,10 @@
17#endif 17#endif
18 18
19#define SYSV_SYSTEM_DIR 19#define SYSV_SYSTEM_DIR
20
21/* Declare malloc and realloc in a way that is clean.
22 But not in makefiles! */
23
24#ifndef THIS_IS_YMAKEFILE
25extern void *malloc (), *realloc ();
26#endif