diff options
Diffstat (limited to 'gl/getopt1.c')
-rw-r--r-- | gl/getopt1.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gl/getopt1.c b/gl/getopt1.c index 046d69f..55a6b4e 100644 --- a/gl/getopt1.c +++ b/gl/getopt1.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* getopt_long and getopt_long_only entry points for GNU getopt. | 1 | /* getopt_long and getopt_long_only entry points for GNU getopt. |
2 | Copyright (C) 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997, | 2 | Copyright (C) 1987-1994, 1996-1998, 2004, 2006, 2009-2013 Free Software |
3 | 1998, 2004, 2006, 2009, 2010 Free Software Foundation, Inc. | 3 | Foundation, Inc. |
4 | This file is part of the GNU C Library. | 4 | This file is part of the GNU C Library. |
5 | 5 | ||
6 | This program is free software: you can redistribute it and/or modify | 6 | This program is free software: you can redistribute it and/or modify |
@@ -141,11 +141,11 @@ main (int argc, char **argv) | |||
141 | break; | 141 | break; |
142 | 142 | ||
143 | case 'c': | 143 | case 'c': |
144 | printf ("option c with value `%s'\n", optarg); | 144 | printf ("option c with value '%s'\n", optarg); |
145 | break; | 145 | break; |
146 | 146 | ||
147 | case 'd': | 147 | case 'd': |
148 | printf ("option d with value `%s'\n", optarg); | 148 | printf ("option d with value '%s'\n", optarg); |
149 | break; | 149 | break; |
150 | 150 | ||
151 | case '?': | 151 | case '?': |