1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
* elf/Makefile: Add rules to build and run initfirst test.
	* elf/initfirst.c: New file.
	* elf/firstobj.c: New file.
This commit is contained in:
Ulrich Drepper
2001-02-02 06:54:15 +00:00
parent 5d9167133c
commit b71e7ce864
9 changed files with 233 additions and 5 deletions

8
elf/firstobj.c Normal file
View File

@ -0,0 +1,8 @@
#include <errno.h>
int
foo (void)
{
errno = 0;
return 0;
}