From 24b4b8b66366176b40525baa1b2f056e8a68d0ce Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Thu, 3 Nov 2016 20:19:02 +0100 Subject: argp: be sure uClibc-ng feature is available --- test/argp/tst-argp2.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test/argp/tst-argp2.c') diff --git a/test/argp/tst-argp2.c b/test/argp/tst-argp2.c index 03afc0b..0e521a9 100644 --- a/test/argp/tst-argp2.c +++ b/test/argp/tst-argp2.c @@ -16,6 +16,7 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, see .  */ +#if (defined(__GLIBC__) && !defined(__UCLIBC__)) || defined(__UCLIBC_HAS_ARGP__) #include static const struct argp_option opt1[] = @@ -87,12 +88,17 @@ static struct argp argp1 = opt1, NULL, "args doc1", "doc1", children1, NULL, NULL }; +#endif static int do_test (void) { +#if (defined(__GLIBC__) && !defined(__UCLIBC__)) || defined(__UCLIBC_HAS_ARGP__) argp_help (&argp1, stdout, ARGP_HELP_LONG, (char *) "tst-argp2"); return 0; +#else + return 23; +#endif } -- cgit v1.2.3