- Timestamp:
- Jul 6, 2005, 5:47:23 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/lib/lgpl/posix/getopt.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r2211 r2212 142 142 143 143 static struct _getopt_data getopt_data; 144 145 /* BSD interface. When set the state will be reset on the next call. */ 146 147 int optreset = 0; 144 148 145 149 … … 1169 1173 int result; 1170 1174 1175 /* BSD extention, same as setting optind to 0. */ 1176 if (optreset) 1177 { 1178 optreset = 0; 1179 optind = 0; 1180 } 1181 1171 1182 getopt_data.optind = optind; 1172 1183 getopt_data.opterr = opterr; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.