diff options
author | Steve Chamberlain <sac@cygnus> | 1992-03-06 12:14:14 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1992-03-06 12:14:14 +0000 |
commit | 56a56f4c15e4becf0ed7836abe0d46e5e9612081 (patch) | |
tree | dd1bd3f0263fbc63506e8045c27efd671302bf72 /bfd/hosts/i386mach.h | |
parent | 921bc435810a376ef5bc1cf86274d0433d9478ff (diff) | |
download | gdb-56a56f4c15e4becf0ed7836abe0d46e5e9612081.zip gdb-56a56f4c15e4becf0ed7836abe0d46e5e9612081.tar.gz gdb-56a56f4c15e4becf0ed7836abe0d46e5e9612081.tar.bz2 |
Now use EXFUN rather than PROTO, so that things using ansidecl.h and
not bfd.h can use them
Diffstat (limited to 'bfd/hosts/i386mach.h')
-rw-r--r-- | bfd/hosts/i386mach.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/hosts/i386mach.h b/bfd/hosts/i386mach.h index 03b06da..3989675 100644 --- a/bfd/hosts/i386mach.h +++ b/bfd/hosts/i386mach.h @@ -16,9 +16,9 @@ extern int errno; /* <errno.h> forgets to do this... */ #define SEEK_SET 0 #define SEEK_CUR 1 -extern PROTO(PTR, malloc, (unsigned)); -extern PROTO(PTR, realloc, (PTR, unsigned)); -extern PROTO(void, free, (PTR)); +extern PTR EXFUN( malloc, (unsigned)); +extern PTR EXFUN( realloc, (PTR, unsigned)); +extern void EXFUN( free, (PTR)); #define HAVE_STRERROR |