HomeSort by relevance Sort by last modified time
    Searched defs:posixly_correct (Results 1 - 6 of 6) 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/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/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 == '+')