]> git.ipfire.org Git - thirdparty/glibc.git/blame - stdlib/tst-putenv.c
aarch64: Fix DT_AARCH64_VARIANT_PCS handling [BZ #26798]
[thirdparty/glibc.git] / stdlib / tst-putenv.c
CommitLineData
574b268e
UD
1#include <stdio.h>
2#include <stdlib.h>
3
4static int
5do_test (void)
6{
7 char *p = getenv ("SOMETHING_NOBODY_USES");
8 if (p == NULL)
9 {
10 puts ("envvar not defined");
11 return 1;
12 }
13
14 return 0;
15}
16
17#define TEST_FUNCTION do_test ()
18#include "../test-skeleton.c"