Changeset 43 for pjproject/main/pjsip/src/pjsua/getopt.c
- Timestamp:
- Nov 11, 2005 7:01:31 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/main/pjsip/src/pjsua/getopt.c
r3 r43 279 279 in GCC. */ 280 280 #include <string.h> 281 #define my_index strchr281 #define my_index pj_native_strchr 282 282 #else 283 283 … … 645 645 then skip everything else like a non-option. */ 646 646 647 if (optind != argc && ! strcmp(argv[optind], "--"))647 if (optind != argc && !pj_native_strcmp(argv[optind], "--")) 648 648 { 649 649 optind++;
Note: See TracChangeset
for help on using the changeset viewer.