diff options
author | Roland McGrath <roland@gnu.org> | 2003-04-12 00:16:59 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-04-12 00:16:59 +0000 |
commit | 78c9da10d2c85c30de91e16c4ed3bb7f047acab9 (patch) | |
tree | 035312780141d5821bfe71217ba86a0f761d26a3 | |
parent | 6efd481484e5d8d47b834fd034dc62f4c036d2cf (diff) | |
download | glibc-78c9da10d2c85c30de91e16c4ed3bb7f047acab9.tar glibc-78c9da10d2c85c30de91e16c4ed3bb7f047acab9.tar.gz glibc-78c9da10d2c85c30de91e16c4ed3bb7f047acab9.tar.bz2 glibc-78c9da10d2c85c30de91e16c4ed3bb7f047acab9.zip |
2003-04-11 Roland McGrath <roland@redhat.com>
* csu/tst-empty.c: New file.
* csu/Makefile (tests, tests-static): Add it.
-rw-r--r-- | csu/Makefile | 3 | ||||
-rw-r--r-- | csu/tst-empty.c | 6 |
2 files changed, 8 insertions, 1 deletions
diff --git a/csu/Makefile b/csu/Makefile index a36550f826..eebf41c0a3 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 0000000000..980dcd60fd --- /dev/null +++ b/csu/tst-empty.c @@ -0,0 +1,6 @@ +/* The most useful C program known to man. */ +int +main (void) +{ + return 0; +} |