diff options
author | Jim Blandy <jimb@redhat.com> | 1993-06-16 21:42:25 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-06-16 21:42:25 +0000 |
commit | 83cb209c0ddc07ea7fb487befc24d7ecf0c40395 (patch) | |
tree | dc7a960aec0ec320406253c095533eb7370d2504 /src/unexec.c | |
parent | 716e9939be108d1b49e3e3e233c20e120b2ccc9c (diff) | |
download | emacs-83cb209c0ddc07ea7fb487befc24d7ecf0c40395.tar.gz |
* unexec.c [HPUX] (sbrk): This returns a void *.
Diffstat (limited to 'src/unexec.c')
-rw-r--r-- | src/unexec.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/unexec.c b/src/unexec.c index c07bc1a4be2..d14103f1dd5 100644 --- a/src/unexec.c +++ b/src/unexec.c @@ -207,11 +207,15 @@ static long data_scnptr; #else /* not COFF */ +#ifdef HPUX +extern void *sbrk (); +#else #ifdef __STDC__ extern void *sbrk (); #else extern char *sbrk (); -#endif +#endif /* __STDC__ */ +#endif /* HPUX */ #define SYMS_START ((long) N_SYMOFF (ohdr)) |