diff options
Diffstat (limited to 'ghc/utils/hp2ps/HpFile.h')
-rw-r--r-- | ghc/utils/hp2ps/HpFile.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ghc/utils/hp2ps/HpFile.h b/ghc/utils/hp2ps/HpFile.h index 919b1b470c..1c43f73d6d 100644 --- a/ghc/utils/hp2ps/HpFile.h +++ b/ghc/utils/hp2ps/HpFile.h @@ -52,21 +52,21 @@ extern token thetok; extern int linenum; extern int endfile; -extern char *TokenToString PROTO((token)); +char *TokenToString PROTO((token)); extern struct entry** identtable; extern floatish *samplemap; extern floatish *markmap; -extern void GetHpFile PROTO((FILE *)); -extern void StoreSample PROTO((struct entry *, intish, floatish)); -extern struct entry *MakeEntry PROTO((char *)); +void GetHpFile PROTO((FILE *)); +void StoreSample PROTO((struct entry *, intish, floatish)); +struct entry *MakeEntry PROTO((char *)); -extern token GetNumber PROTO((FILE *)); -extern void GetIdent PROTO((FILE *)); -extern void GetString PROTO((FILE *)); -extern boolish IsIdChar PROTO((int)); /* int is a "char" from getc */ +token GetNumber PROTO((FILE *)); +void GetIdent PROTO((FILE *)); +void GetString PROTO((FILE *)); +boolish IsIdChar PROTO((int)); /* int is a "char" from getc */ extern char *jobstring; extern char *datestring; |