diff options
author | Michael Brown <mcb30@etherboot.org> | 2008-09-12 02:06:49 +0100 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2008-10-07 22:04:50 +0100 |
commit | 19a0452205baf114b505050d49ff6a826743954a (patch) | |
tree | c1584f6c6bca0b2348e5715f10c3f04377ceda0d /src/include/stdlib.h | |
parent | 521549d90076b0745eef85e5ab37047658b73b96 (diff) | |
download | ipxe-19a0452205baf114b505050d49ff6a826743954a.tar.gz |
[libc] Add function declaration for main() in stdlib.h
Diffstat (limited to 'src/include/stdlib.h')
-rw-r--r-- | src/include/stdlib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/stdlib.h b/src/include/stdlib.h index ae9969622..f3dc7e411 100644 --- a/src/include/stdlib.h +++ b/src/include/stdlib.h @@ -68,5 +68,6 @@ static inline void srand ( unsigned int seed ) { */ extern int system ( const char *command ); +extern __cdecl int main ( void ); #endif /* STDLIB_H */ |