mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 18:25:28 +00:00
osdep: Conditionally include non-Windows headers
This commit is contained in:
parent
977ad292b3
commit
3d4f37b78f
|
@ -84,17 +84,20 @@ typedef __float128 _Float128;
|
||||||
#endif
|
#endif
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include <string.h>
|
#ifndef _MSC_VER
|
||||||
#include <strings.h>
|
#include <strings.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <sys/time.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <string.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <unistd.h>
|
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <sys/time.h>
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
/* setjmp must be declared before sysemu/os-win32.h
|
/* setjmp must be declared before sysemu/os-win32.h
|
||||||
* because it is redefined there. */
|
* because it is redefined there. */
|
||||||
|
|
Loading…
Reference in a new issue