diff options
author | Miles Bader <miles@gnu.org> | 1997-02-20 00:05:09 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1997-02-20 00:05:09 +0000 |
commit | 9550f5cff5c6fb961d5d0662f07ae61b7c1fee99 (patch) | |
tree | ecb4e82d814a3266e682e6f4a16648879310f37a /libshouldbeinlibc/argp-test.c | |
parent | 4837142699b837558b134ff0623036983baec857 (diff) |
Merge changes from libc 1997-02-17.
Diffstat (limited to 'libshouldbeinlibc/argp-test.c')
-rw-r--r-- | libshouldbeinlibc/argp-test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libshouldbeinlibc/argp-test.c b/libshouldbeinlibc/argp-test.c index a3a40c3f..702ae9aa 100644 --- a/libshouldbeinlibc/argp-test.c +++ b/libshouldbeinlibc/argp-test.c @@ -27,7 +27,7 @@ #include <string.h> #include <argp.h> -char *argp_program_version = "argp-test 1.0"; +const char *argp_program_version = "argp-test 1.0"; struct argp_option sub_options[] = { @@ -71,7 +71,7 @@ static char * sub_help_filter (int key, const char *text, void *input) { if (key == ARGP_KEY_HELP_EXTRA) - return strdup ("This is some extra text from the sub parser (note that it + return strdup ("This is some extra text from the sub parser (note that it \ is preceded by a blank line)."); else return (char *)text; |