add static in parse_define

This commit is contained in:
Ilia Maslakov 2009-03-10 20:11:51 +00:00
parent 70be4fbf7b
commit e7b82fe9f3

View File

@ -44,7 +44,7 @@
/*** file scope functions **********************************************/
gboolean parse_define(char *buf, char **long_name, char **short_name, long *line)
static gboolean parse_define(char *buf, char **long_name, char **short_name, long *line)
{
enum {in_longname, in_shortname, in_line, finish} def_state = in_longname;