From: Roland McGrath Date: Sat, 12 Apr 2003 00:16:59 +0000 (+0000) Subject: 2003-04-11 Roland McGrath X-Git-Tag: upstream/2.20~12462 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=78c9da10d2c85c30de91e16c4ed3bb7f047acab9;p=platform%2Fupstream%2Flinaro-glibc.git 2003-04-11 Roland McGrath * csu/tst-empty.c: New file. * csu/Makefile (tests, tests-static): Add it. --- diff --git a/csu/Makefile b/csu/Makefile index a36550f..eebf41c 100644 --- a/csu/Makefile +++ b/csu/Makefile @@ -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. diff --git a/csu/tst-empty.c b/csu/tst-empty.c new file mode 100644 index 0000000..980dcd6 --- /dev/null +++ b/csu/tst-empty.c @@ -0,0 +1,6 @@ +/* The most useful C program known to man. */ +int +main (void) +{ + return 0; +}