diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-06-28 13:27:05 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-06-28 13:27:05 +0000 |
commit | 63800a99fb223f2d7c4253c71a0488af1aede23e (patch) | |
tree | fcad34bcd26d2bba3158453e4482b8c0b681ba70 /Build/source/texk/makejvf | |
parent | 5c8f5c4c20e8920b2f8e2c74653551163bda28de (diff) |
Include the Autoconf generated headers always first
git-svn-id: svn://tug.org/texlive/trunk@31002 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/makejvf')
-rw-r--r-- | Build/source/texk/makejvf/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/makejvf/main.c | 8 | ||||
-rw-r--r-- | Build/source/texk/makejvf/tfmread.c | 6 | ||||
-rw-r--r-- | Build/source/texk/makejvf/tool.c | 6 | ||||
-rw-r--r-- | Build/source/texk/makejvf/write.c | 6 |
5 files changed, 18 insertions, 13 deletions
diff --git a/Build/source/texk/makejvf/ChangeLog b/Build/source/texk/makejvf/ChangeLog index 69d6adcfd91..317007cbd6e 100644 --- a/Build/source/texk/makejvf/ChangeLog +++ b/Build/source/texk/makejvf/ChangeLog @@ -1,3 +1,8 @@ +2013-06-28 Peter Breitenlohner <peb@mppmu.mpg.de> + + * main.c, tfmread.c, tool.c, write.c: Always first include + <kpathsea/config.h>. + 2012-12-07 Peter Breitenlohner <peb@mppmu.mpg.de> * tfmread.c: Drop unused variable (gcc-4.6 warning). diff --git a/Build/source/texk/makejvf/main.c b/Build/source/texk/makejvf/main.c index 3b2f24bad94..6313726e97f 100644 --- a/Build/source/texk/makejvf/main.c +++ b/Build/source/texk/makejvf/main.c @@ -1,12 +1,12 @@ -#include <stdio.h> -#include <stdlib.h> -#include <string.h> - #include <kpathsea/kpathsea.h> #include <ptexenc/ptexenc.h> #include "makejvf.h" #include "uniblock.h" +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + FILE *vfp,*afp=NULL; char *atfmname,*vtfmname,*afmname,*vfname,*kanatfm,*jistfm,*ucsqtfm; int kanatume=-1,chotai=0,baseshift=0,minute=0,useset3=0,hankana=0,fidzero=0; diff --git a/Build/source/texk/makejvf/tfmread.c b/Build/source/texk/makejvf/tfmread.c index 0122e2d24c1..7af673d4304 100644 --- a/Build/source/texk/makejvf/tfmread.c +++ b/Build/source/texk/makejvf/tfmread.c @@ -1,10 +1,10 @@ +#include <kpathsea/kpathsea.h> +#include "makejvf.h" + #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <kpathsea/kpathsea.h> -#include "makejvf.h" - int nt,unit,zh,zw,jfm_id; int *width,*height,*depth,*italic,*glue_kern,*kern,*glue,*param; unsigned char *header,*char_type,*char_info; diff --git a/Build/source/texk/makejvf/tool.c b/Build/source/texk/makejvf/tool.c index c99e8b9a03f..7aeb6cace08 100644 --- a/Build/source/texk/makejvf/tool.c +++ b/Build/source/texk/makejvf/tool.c @@ -1,9 +1,9 @@ -#include <stdio.h> -#include <math.h> - #include <kpathsea/config.h> #include "makejvf.h" +#include <stdio.h> +#include <math.h> + int mquad(unsigned char *p) { unsigned int cc; diff --git a/Build/source/texk/makejvf/write.c b/Build/source/texk/makejvf/write.c index 581bf815545..a4417e9d5db 100644 --- a/Build/source/texk/makejvf/write.c +++ b/Build/source/texk/makejvf/write.c @@ -1,10 +1,10 @@ -#include <stdio.h> -#include <stdlib.h> - #include <kpathsea/config.h> #include "makejvf.h" #include "uniblock.h" +#include <stdio.h> +#include <stdlib.h> + FILE *vfopen(char *name) { FILE *fp; |