aboutsummaryrefslogtreecommitdiff
path: root/bfd/hosts/harris.h
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@cygnus>1992-03-06 12:14:14 +0000
committerSteve Chamberlain <sac@cygnus>1992-03-06 12:14:14 +0000
commit56a56f4c15e4becf0ed7836abe0d46e5e9612081 (patch)
treedd1bd3f0263fbc63506e8045c27efd671302bf72 /bfd/hosts/harris.h
parent921bc435810a376ef5bc1cf86274d0433d9478ff (diff)
downloadgdb-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/harris.h')
-rw-r--r--bfd/hosts/harris.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/bfd/hosts/harris.h b/bfd/hosts/harris.h
index e09ed42..33123b2 100644
--- a/bfd/hosts/harris.h
+++ b/bfd/hosts/harris.h
@@ -11,15 +11,15 @@
#include <stdio.h>
#ifndef DONTDECLARE_MALLOC
-extern PROTO(PTR,malloc,(unsigned));
-extern PROTO(PTR ,realloc, (PTR, unsigned));
+extern PTR EXFUN(malloc,(unsigned));
+extern PTR EXFUN(realloc, (PTR, unsigned));
#endif
-extern PROTO(int, abort,(void));
-extern PROTO(int, free,(PTR));
-extern PROTO(void, bcopy,(char*,char*,int));
-extern PROTO(void, exit,(int));
+extern int EXFUN( abort,(void));
+extern int EXFUN( free,(PTR));
+extern void EXFUN( bcopy,(char*,char*,int));
+extern void EXFUN( exit,(int));
extern int strtol();
-extern PROTO(void, bzero,(char *, int));
+extern void EXFUN( bzero,(char *, int));
/* EXACT TYPES */
typedef char int8e_type;