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

  /ndk/sources/host-tools/make-3.81/glob/
fnmatch.c 293 static int posixly_correct; local
297 if (posixly_correct == 0)
298 posixly_correct = getenv ("POSIXLY_CORRECT") != NULL ? 1 : -1;
313 not = (*p == '!' || (posixly_correct < 0 && *p == '^'));
  /bionic/libc/unistd/
getopt_long.c 297 static int posixly_correct = -1; local
303 * Disable GNU extensions if POSIXLY_CORRECT is set or options
306 if (posixly_correct == -1)
307 posixly_correct = (getenv("POSIXLY_CORRECT") != NULL);
308 if (posixly_correct || *options == '+')
  /external/grub/lib/
getopt.c 102 Setting the environment variable POSIXLY_CORRECT disables permutation.
163 POSIXLY_CORRECT is defined, PERMUTE otherwise.
169 variable POSIXLY_CORRECT, or using `+' as the first character
193 /* Value of POSIXLY_CORRECT environment variable. */ variable
194 static char *posixly_correct;
409 posixly_correct = getenv ("POSIXLY_CORRECT");
423 else if (posixly_correct != NULL)
429 if (posixly_correct == NULL
788 if (posixly_correct)
    [all...]
  /ndk/sources/host-tools/make-3.81/
getopt.c 96 Setting the environment variable POSIXLY_CORRECT disables permutation.
157 POSIXLY_CORRECT is defined, PERMUTE otherwise.
163 variable POSIXLY_CORRECT, or using `+' as the first character
187 /* Value of POSIXLY_CORRECT environment variable. */
188 static char *posixly_correct; variable
396 posixly_correct = getenv ("POSIXLY_CORRECT");
410 else if (posixly_correct != NULL)
416 if (posixly_correct == NULL
769 if (posixly_correct)
    [all...]

Completed in 188 milliseconds