diff options
Diffstat (limited to 'Build/source/texk/dvipng/special.c')
-rw-r--r-- | Build/source/texk/dvipng/special.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Build/source/texk/dvipng/special.c b/Build/source/texk/dvipng/special.c index 45a97d92af1..d1f55b5b79e 100644 --- a/Build/source/texk/dvipng/special.c +++ b/Build/source/texk/dvipng/special.c @@ -40,7 +40,7 @@ struct pscode { struct pscode* psheaderp=NULL; /* static, DVI-specific header list */ -void PSCodeInit(struct pscode *entry, char *special) +static void PSCodeInit(struct pscode *entry, char *special) { entry->next=NULL; entry->special=special; @@ -91,7 +91,7 @@ void ClearPSHeaders(void) } } -void writepscode(struct pscode* pscodep, FILE* psstream) +static void writepscode(struct pscode* pscodep, FILE* psstream) { while (pscodep!=NULL) { if (pscodep->code!=NULL) { @@ -131,7 +131,7 @@ void writepscode(struct pscode* pscodep, FILE* psstream) } -gdImagePtr +static gdImagePtr ps2png(struct pscode* pscodep, char *device, int hresolution, int vresolution, int llx, int lly, int urx, int ury, int bgred, int bggreen, int bgblue) { @@ -274,7 +274,7 @@ ps2png(struct pscode* pscodep, char *device, int hresolution, int vresolution, return psimage; } -gdImagePtr +static gdImagePtr rescale(gdImagePtr psimage, int pngwidth, int pngheight) { gdImagePtr scaledimage=psimage; @@ -305,7 +305,7 @@ rescale(gdImagePtr psimage, int pngwidth, int pngheight) return(scaledimage); } -void newpsheader(char* special) { +static void newpsheader(char* special) { struct pscode* tmp; char* txt; |