diff options
| author | Richard M. Stallman | 1994-09-20 00:26:25 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-09-20 00:26:25 +0000 |
| commit | e08455275a9859ac679ecc7dbdf89f397ad68d6b (patch) | |
| tree | c3f8804f7059976038215ed746d87dbe02638b6e | |
| parent | aeb2c3069ec112f2f755f5eecd43b07da5c7c52d (diff) | |
| download | emacs-e08455275a9859ac679ecc7dbdf89f397ad68d6b.tar.gz emacs-e08455275a9859ac679ecc7dbdf89f397ad68d6b.zip | |
(malloc, realloc): Declared.
| -rw-r--r-- | src/s/osf1.h | 7 |
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 | ||
| 25 | extern void *malloc (), *realloc (); | ||
| 26 | #endif | ||