mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-03 08:11:08 +00:00
b71e7ce864
* elf/Makefile: Add rules to build and run initfirst test. * elf/initfirst.c: New file. * elf/firstobj.c: New file.
9 lines
64 B
C
9 lines
64 B
C
#include <errno.h>
|
|
|
|
int
|
|
foo (void)
|
|
{
|
|
errno = 0;
|
|
return 0;
|
|
}
|