Ignore:
Timestamp:
Feb 14, 2006 9:15:30 PM (18 years ago)
Author:
bennylp
Message:

Ported pjsip to WinCE

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua/getopt.c

    r167 r184  
    3030 * modified by Mike Borella <mike_borella@mw.3com.com> 
    3131 * 
    32  * $Id: getopt.c,v 1.4 2000/10/30 22:06:03 mborella Exp $ 
     32 * $Id$ 
    3333 */ 
    3434 
     
    296296   in GCC.  */ 
    297297#include <string.h> 
    298 #define my_index        pj_native_strchr 
     298#define my_index        pj_ansi_strchr 
    299299#else 
    300300 
     
    486486  nextchar = NULL; 
    487487 
    488   posixly_correct = getenv ("POSIXLY_CORRECT"); 
     488  //posixly_correct = getenv ("POSIXLY_CORRECT"); 
     489  posixly_correct = NULL; 
    489490 
    490491  /* Determine how to handle the ordering of options and nonoptions.  */ 
     
    662663         then skip everything else like a non-option.  */ 
    663664 
    664       if (optind != argc && !pj_native_strcmp(argv[optind], "--")) 
     665      if (optind != argc && !pj_ansi_strcmp(argv[optind], "--")) 
    665666        { 
    666667          optind++; 
Note: See TracChangeset for help on using the changeset viewer.