This website requires JavaScript.
Explore
Help
Sign In
OpenE2K
/
glibc
Watch
2
Star
0
Fork
You've already forked glibc
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
bd92328d5e
glibc
/
elf
/
firstobj.c
11 lines
88 B
C
Raw
Normal View
History
Unescape
Escape
Update. * elf/Makefile: Add rules to build and run initfirst test. * elf/initfirst.c: New file. * elf/firstobj.c: New file.
2001-02-02 07:54:15 +01:00
#
include
<errno.h>
Add prototype.
2001-02-06 11:38:10 +01:00
extern
int
foo
(
void
)
;
Update. * elf/Makefile: Add rules to build and run initfirst test. * elf/initfirst.c: New file. * elf/firstobj.c: New file.
2001-02-02 07:54:15 +01:00
int
foo
(
void
)
{
errno
=
0
;
return
0
;
}