fix declaration of free
This commit is contained in:
parent
36e492a640
commit
bec9b33551
1 changed files with 4 additions and 0 deletions
|
@ -13,7 +13,11 @@
|
|||
#define SEEK_SET 0
|
||||
#define SEEK_CUR 1
|
||||
|
||||
#ifdef __STDC__
|
||||
extern void EXFUN(free,(PTR));
|
||||
#else /* not __STDC__ */
|
||||
extern int EXFUN(free,(PTR));
|
||||
#endif /* not __STDC__ */
|
||||
extern int EXFUN(abort,(void));
|
||||
extern int EXFUN(close,(int));
|
||||
extern int EXFUN(fcntl,(int des, int cmd, int e));
|
||||
|
|
Loading…
Reference in a new issue