Index: src/color.c --- src/color.c.orig 2007-02-26 00:10:01 +0100 +++ src/color.c 2007-03-04 11:09:56 +0100 @@ -70,7 +70,7 @@ void -init_color() +gnuplot_init_color() { /* initialize global palette */ sm_palette.colorFormulae = 37; /* const */ Index: src/color.h --- src/color.h.orig 2006-06-15 17:42:33 +0200 +++ src/color.h 2007-03-04 11:20:16 +0100 @@ -203,7 +203,7 @@ /* ROUTINES */ -void init_color __PROTO((void)); /* call once to initialize variables */ +void gnuplot_init_color __PROTO((void)); /* call once to initialize variables */ /* Index: src/plot.c --- src/plot.c.orig 2007-02-10 04:55:59 +0100 +++ src/plot.c 2007-03-04 11:20:31 +0100 @@ -556,7 +556,7 @@ * would set them to. Since the axis variables aren't in * initialized arrays any more, this is now necessary... */ reset_command(); - init_color(); /* Initialization of color */ + gnuplot_init_color(); /* Initialization of color */ load_rcfile(); init_fit(); /* Initialization of fitting module */