From: Bruno Haible Date: Mon, 15 Sep 2003 09:39:19 +0000 (+0000) Subject: Move away from K&R C. X-Git-Tag: v0.13~259 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f0ee8caa6c510ac4b025e56958c69734282ca8f;p=thirdparty%2Fgettext.git Move away from K&R C. --- diff --git a/gettext-tools/lib/ChangeLog b/gettext-tools/lib/ChangeLog index b2ed205e6..88f575dff 100644 --- a/gettext-tools/lib/ChangeLog +++ b/gettext-tools/lib/ChangeLog @@ -1,3 +1,7 @@ +2003-09-12 Paul Eggert + + * progreloc.c (get_full_program_name): Define via prototype. + 2003-08-28 Bruno Haible * binary-io.h: Undefine O_BINARY before defining it. This avoids a diff --git a/gettext-tools/lib/progreloc.c b/gettext-tools/lib/progreloc.c index cda55a76e..13ecb436e 100644 --- a/gettext-tools/lib/progreloc.c +++ b/gettext-tools/lib/progreloc.c @@ -285,7 +285,7 @@ set_program_name_and_installdir (const char *argv0, /* Return the full pathname of the current executable, based on the earlier call to set_program_name_and_installdir. Return NULL if unknown. */ char * -get_full_program_name () +get_full_program_name (void) { return executable_fullname; }