Changeset 3140 for trunk/src/kmk/getopt1.c
- Timestamp:
- Mar 14, 2018, 10:28:10 PM (7 years ago)
- Location:
- trunk/src/kmk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk
-
Property svn:mergeinfo
set to
/vendor/gnumake/current merged eligible
-
Property svn:mergeinfo
set to
-
trunk/src/kmk/getopt1.c
r2591 r3140 1 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, 3 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 4 2010 Free Software Foundation, Inc. 2 Copyright (C) 1987-1994, 1996-2016 Free Software Foundation, Inc. 5 3 6 4 NOTE: The canonical source of this file is maintained with the GNU C Library. … … 152 150 153 151 case 'c': 154 printf ("option c with value `%s'\n", optarg);152 printf ("option c with value '%s'\n", optarg); 155 153 break; 156 154 157 155 case 'd': 158 printf ("option d with value `%s'\n", optarg);156 printf ("option d with value '%s'\n", optarg); 159 157 break; 160 158
Note:
See TracChangeset
for help on using the changeset viewer.