* unexec.c [HPUX] (sbrk): This returns a void *.

This commit is contained in:
Jim Blandy 1993-06-16 21:42:25 +00:00
parent 716e9939be
commit 83cb209c0d

View file

@ -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))