diff options
Diffstat (limited to 'gcc/cpphash.h')
-rwxr-xr-x | gcc/cpphash.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cpphash.h b/gcc/cpphash.h index 0f37b56..3b97f1c 100755 --- a/gcc/cpphash.h +++ b/gcc/cpphash.h @@ -49,6 +49,6 @@ typedef struct hashnode HASHNODE; #define HASHSTEP(old, c) ((old << 2) + c) #define MAKE_POS(v) (v & 0x7fffffff) /* make number positive */ -extern HASHNODE *install PARAMS ((U_CHAR *,int,enum node_type, int,char *,int)); -extern int hashf PARAMS ((const U_CHAR *, int, int)); -extern void delete_macro PARAMS ((HASHNODE *)); +extern HASHNODE *install (U_CHAR *,int,enum node_type, int,char *,int); +extern int hashf (const U_CHAR *, int, int); +extern void delete_macro (HASHNODE *); |