2003-04-11 Roland McGrath <roland@redhat.com>

* csu/tst-empty.c: New file.
	* csu/Makefile (tests, tests-static): Add it.
This commit is contained in:
Roland McGrath 2003-04-12 00:16:59 +00:00
parent 6efd481484
commit 78c9da10d2
2 changed files with 8 additions and 1 deletions

View File

@ -42,7 +42,8 @@ distribute = initfini.c gmon-start.c start.c defs.awk munch.awk \
generated = version-info.h
before-compile = $(objpfx)version-info.h
tests := tst-atomic tst-atomic-long
tests := tst-empty tst-atomic tst-atomic-long
tests-static := tst-empty
all: # Make this the default target; it will be defined in Rules.

6
csu/tst-empty.c Normal file
View File

@ -0,0 +1,6 @@
/* The most useful C program known to man. */
int
main (void)
{
return 0;
}