mirror of
https://github.com/ZDoom/acc.git
synced 2025-02-07 06:11:02 +00:00
Merge pull request #42 from ioan-chera/osx-compile
Fixed so compilation works on Mac
This commit is contained in:
commit
bd0ed01ee7
2 changed files with 2 additions and 2 deletions
2
misc.c
2
misc.c
|
@ -12,7 +12,7 @@
|
|||
#else
|
||||
#include <fcntl.h>
|
||||
#include <stdlib.h>
|
||||
#ifndef unix
|
||||
#if !defined(unix) && !defined(__APPLE__)
|
||||
#include <io.h>
|
||||
#endif
|
||||
#endif
|
||||
|
|
2
token.c
2
token.c
|
@ -15,7 +15,7 @@
|
|||
#ifdef __NeXT__
|
||||
#include <libc.h>
|
||||
#else
|
||||
#ifndef unix
|
||||
#if !defined(unix) && !defined(__APPLE__)
|
||||
#include <io.h>
|
||||
#endif
|
||||
#include <limits.h>
|
||||
|
|
Loading…
Reference in a new issue