HomeSort by relevance Sort by last modified time
    Searched refs:posixly_correct (Results 1 - 5 of 5) sorted by null

  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
getopt_long.c 362 static int posixly_correct = -1; local
375 * Disable GNU extensions if POSIXLY_CORRECT is set or options
378 if (posixly_correct == -1 || optreset)
379 posixly_correct = (getenv("POSIXLY_CORRECT") != NULL);
382 else if (posixly_correct || *options == '+')
512 warnx(posixly_correct ? illoptchar : gnuoptchar,
  /external/tcpdump/missing/
getopt_long.c 359 int posixly_correct; /* no static, can be changed on the fly */ local
365 * Disable GNU extensions if POSIXLY_CORRECT is set or options
368 posixly_correct = (getenv("POSIXLY_CORRECT") != NULL);
372 else if (posixly_correct || *options == '+')
375 if (posixly_correct || *options == '+')
512 warnx(posixly_correct ? illoptchar : gnuoptchar,
  /external/mesa3d/src/getopt/
getopt_long.c 282 static int posixly_correct = -1; local
288 * Disable GNU extensions if POSIXLY_CORRECT is set or options
291 if (posixly_correct == -1)
292 posixly_correct = (getenv("POSIXLY_CORRECT") != NULL);
293 if (posixly_correct || *options == '+')
  /external/libusb/examples/getopt/
getopt.c 100 Setting the environment variable POSIXLY_CORRECT disables permutation.
161 POSIXLY_CORRECT is defined, PERMUTE otherwise.
167 variable POSIXLY_CORRECT, or using `+' as the first character
191 /* Value of POSIXLY_CORRECT environment variable. */ variable
192 static char *posixly_correct;
405 posixly_correct = getenv ("POSIXLY_CORRECT");
419 else if (posixly_correct != NULL)
425 if (posixly_correct == NULL
795 if (posixly_correct)
    [all...]
  /toolchain/binutils/binutils-2.27/libiberty/
getopt.c 103 Setting the environment variable POSIXLY_CORRECT disables permutation.
164 POSIXLY_CORRECT is defined, PERMUTE otherwise.
170 variable POSIXLY_CORRECT, or using `+' as the first character
194 /* Value of POSIXLY_CORRECT environment variable. */ variable
195 static char *posixly_correct;
416 posixly_correct = getenv ("POSIXLY_CORRECT");
430 else if (posixly_correct != NULL)
436 if (posixly_correct == NULL
792 if (posixly_correct)
    [all...]

Completed in 130 milliseconds