summaryrefslogtreecommitdiff
path: root/stdlib/tst-unsetenv1.c
blob: a2a760d2418d8aceef81a61cc639c97e4d707d71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdlib.h>

static int
do_test (void)
{
  clearenv ();
  unsetenv ("FOO");
  return 0;
}

#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"