diff options
author | 2015-10-18 10:13:31 +0200 | |
---|---|---|
committer | 2015-10-18 10:13:31 +0200 | |
commit | 3f70abab450861bca09dc6e4100850fdabe9d560 (patch) | |
tree | b437974f8a49e55151ef7cfa5e14bd16d071e432 /src/osd/sdl/sdlptty_unix.c | |
parent | e496024c9ca4e30b19cfcc48cffdfb766a238ee8 (diff) |
pty: added inclusion of stdlib.h on systems != Linux
Diffstat (limited to 'src/osd/sdl/sdlptty_unix.c')
-rw-r--r-- | src/osd/sdl/sdlptty_unix.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/osd/sdl/sdlptty_unix.c b/src/osd/sdl/sdlptty_unix.c index aeca6fd4baf..6b618314d72 100644 --- a/src/osd/sdl/sdlptty_unix.c +++ b/src/osd/sdl/sdlptty_unix.c @@ -2,7 +2,7 @@ // copyright-holders:Olivier Galibert, R. Belmont //============================================================ // -// sdlptty_unix.c - SDL psuedo tty access functions +// sdlptty_unix.c - SDL pseudo tty access functions // // SDLMAME by Olivier Galibert and R. Belmont // @@ -28,9 +28,7 @@ #elif defined(SDLMAME_HAIKU) # include <bsd/pty.h> #endif -#if defined(SDLMAME_LINUX) #include <stdlib.h> -#endif #include "sdlfile.h" |