* unexec.c [HPUX] (sbrk): This returns a void *.
This commit is contained in:
parent
716e9939be
commit
83cb209c0d
1 changed files with 5 additions and 1 deletions
|
@ -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))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue