Fix syntax error

This commit is contained in:
Robert Millan 2006-03-18 12:53:39 +00:00 committed by Guillem Jover
parent 31461c563a
commit a84fcb45ef

View File

@ -24,13 +24,13 @@
static char *__progname = NULL; static char *__progname = NULL;
char * char *
getprogname (); getprogname ()
{ {
return __progname; return __progname;
} }
void void
setprogname (char *new); setprogname (char *new)
{ {
__progname = new; __progname = new;
} }