diff options
author | Bruno Haible <bruno@clisp.org> | 2003-09-15 09:39:19 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:10:58 +0200 |
commit | 3f0ee8caa6c510ac4b025e56958c69734282ca8f (patch) | |
tree | aa66b914febcd997e7944566a1f86d4c1bd3f7e9 | |
parent | 049344392b6e428c33366c03b5da7dd8595b17fe (diff) | |
download | external_gettext-3f0ee8caa6c510ac4b025e56958c69734282ca8f.zip external_gettext-3f0ee8caa6c510ac4b025e56958c69734282ca8f.tar.gz external_gettext-3f0ee8caa6c510ac4b025e56958c69734282ca8f.tar.bz2 |
Move away from K&R C.
-rw-r--r-- | gettext-tools/lib/ChangeLog | 4 | ||||
-rw-r--r-- | gettext-tools/lib/progreloc.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gettext-tools/lib/ChangeLog b/gettext-tools/lib/ChangeLog index b2ed205..88f575d 100644 --- a/gettext-tools/lib/ChangeLog +++ b/gettext-tools/lib/ChangeLog @@ -1,3 +1,7 @@ +2003-09-12 Paul Eggert <eggert@twinsun.com> + + * progreloc.c (get_full_program_name): Define via prototype. + 2003-08-28 Bruno Haible <bruno@clisp.org> * 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 cda55a7..13ecb43 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; } |