glibc/elf/firstobj.c
2001-02-06 10:38:10 +00:00

11 lines
88 B
C

#include <errno.h>
extern int foo (void);
int
foo (void)
{
errno = 0;
return 0;
}