mirror of
git://sourceware.org/git/glibc.git
synced 2025-02-23 13:09:58 +08:00
* 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;
|
|
}
|