1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-05 19:01:16 +03:00
Files
glibc/elf/firstobj.c
Andreas Jaeger 49a9dd2b6c Add prototype.
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;
}