]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
2003-04-11 Roland McGrath <roland@redhat.com>
authorRoland McGrath <roland@gnu.org>
Sat, 12 Apr 2003 00:16:59 +0000 (00:16 +0000)
committerRoland McGrath <roland@gnu.org>
Sat, 12 Apr 2003 00:16:59 +0000 (00:16 +0000)
* csu/tst-empty.c: New file.
* csu/Makefile (tests, tests-static): Add it.

csu/Makefile
csu/tst-empty.c [new file with mode: 0644]

index a36550f8267eda04ec718aa0edfb5694c8fe8d08..eebf41c0a3a80bf62b658cbc603c10e1706c5f4d 100644 (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.
 
diff --git a/csu/tst-empty.c b/csu/tst-empty.c
new file mode 100644 (file)
index 0000000..980dcd6
--- /dev/null
@@ -0,0 +1,6 @@
+/* The most useful C program known to man.  */
+int
+main (void)
+{
+  return 0;
+}