diff options
Diffstat (limited to 'Build/source/texk/dviljk/tfm.c')
-rw-r--r-- | Build/source/texk/dviljk/tfm.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Build/source/texk/dviljk/tfm.c b/Build/source/texk/dviljk/tfm.c index 69f1d6b22a4..0357a572735 100644 --- a/Build/source/texk/dviljk/tfm.c +++ b/Build/source/texk/dviljk/tfm.c @@ -11,7 +11,6 @@ #else #include <stdio.h> #include <stdlib.h> -extern char* TFMpath; #endif #include "config.h" /* for STRSIZE and tfm_info_type, at least */ @@ -19,23 +18,15 @@ extern char* TFMpath; #include "tfm.h" -extern void Fatal(char *, ...); - #ifdef vms #include <ssdef.h> #include <stsdef.h> #define getenv vms_getenv #endif -/* Defined in dvi2xx.c. */ -extern long4 NoSignExtend(FILEPTR, int); - #define TFM_GET_TWO() NoSignExtend (tfm_fp, 2) #define TFM_GET_FOUR() NoSignExtend (tfm_fp, 4) -extern bool G_quiet; -extern void Warning(); - /* Read N words (N * 4 bytes) from TFM_FP and return it in *OUTBUF, unless OUTBUF==NULL, in which case throw them away. */ |