1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

Do not redefine prototype of exit() under linux

This commit is contained in:
Peter Howkins 2012-03-12 00:31:10 +00:00
parent ee22401f76
commit 0ce783f018

View file

@ -68,7 +68,9 @@ extern "C" {
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
#if !defined(linux)
void exit(int); void exit(int);
#endif
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif