diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2014-12-12 16:18:12 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2014-12-12 16:18:12 +0100 |
commit | 067637375658047d70c296606ae17ef0bc86499d (patch) | |
tree | 3310aa2ed1489274cae928e0e9ab350ecf3af3c6 /test/nptl/tst-mqueue7.c | |
parent | d6da534cbf05dc4d09221881afd49b275ca7cd29 (diff) |
unistd: allow to turn off getopt_long
The GNU variant of getopt() previously had no way to turn off
getopt_long() support.
Diffstat (limited to 'test/nptl/tst-mqueue7.c')
-rw-r--r-- | test/nptl/tst-mqueue7.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/nptl/tst-mqueue7.c b/test/nptl/tst-mqueue7.c index e8d53ad83..01d7cd7d6 100644 --- a/test/nptl/tst-mqueue7.c +++ b/test/nptl/tst-mqueue7.c @@ -32,10 +32,12 @@ static mqd_t after_exec = (mqd_t) -1; #define CMDLINE_OPTIONS \ + "a:" +/* { "after-exec", required_argument, NULL, OPT_AFTEREXEC }, - +*/ #define CMDLINE_PROCESS \ - case OPT_AFTEREXEC: \ + case 'a': \ after_exec = (mqd_t) strtoul (optarg, NULL, 0); \ break; |