glibc/misc/tst-empty.c
Nick Alcock 2908885c82 Move all tests out of the csu subdirectory
Stack-protection on .o files in csu/ must be suppressed for the sake of
library startup code.  This also suppresses stack-protection in tests
(which are also covered by CFLAGS-.o), though this is neither necessary
nor desirable.

So impose the rule that .o files in csu/ are necessarily C startup code,
and move the few tests in there into misc/ instead.
2016-12-21 11:52:19 +01:00

9 lines
123 B
C

/* The most useful C program known to man. */
static int
do_test (void)
{
return 0;
}
#include <support/test-driver.c>