summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvipng/color.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/dvipng/color.c')
-rw-r--r--Build/source/texk/dvipng/color.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Build/source/texk/dvipng/color.c b/Build/source/texk/dvipng/color.c
index 5d3a23ab37b..f3430ca616d 100644
--- a/Build/source/texk/dvipng/color.c
+++ b/Build/source/texk/dvipng/color.c
@@ -54,7 +54,7 @@ void initcolor()
cstack[1].blue=0;
}
-struct colorname * NewColor(char* prefix, int nprefix,
+static struct colorname * NewColor(char* prefix, int nprefix,
char* name, int nname,
char* model, int nmodel,
char* values, int nvalues)
@@ -92,7 +92,7 @@ struct colorname * NewColor(char* prefix, int nprefix,
#define FINDPSNAMEEND(s,n) n=0; while(s<max && *s!='{') { s++; n++; }
#define BLANKCOMMAS(s)
-struct colorname* LoadColornameFile(char* filename)
+static struct colorname* LoadColornameFile(char* filename)
{
struct colorname *list=NULL,*tmp=NULL;
char *filepath,*pos,*max;
@@ -165,7 +165,7 @@ struct colorname* LoadColornameFile(char* filename)
return(list);
}
-void ClearXColorPrologue(void)
+static void ClearXColorPrologue(void)
{
struct colorname *next;
while (xcp) {
@@ -199,7 +199,7 @@ void InitXColorPrologue(char* name)
strcpy(xcpname,name);
}
-struct colorname* LoadXColorPrologue(void)
+static struct colorname* LoadXColorPrologue(void)
{
struct colorname *list=NULL,*tmp=NULL;
char *filepath,*pos,*max;