From bec9b335511df9f349805bf807d07b1e26d98010 Mon Sep 17 00:00:00 2001 From: "K. Richard Pixley" Date: Sun, 17 May 1992 00:58:37 +0000 Subject: [PATCH] fix declaration of free --- bfd/hosts/sun3.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bfd/hosts/sun3.h b/bfd/hosts/sun3.h index d1df8d62b15..f85aab169f6 100644 --- a/bfd/hosts/sun3.h +++ b/bfd/hosts/sun3.h @@ -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)); -- 2.30.2