#include <> for system headers

This commit is contained in:
Nobuyoshi Nakada 2019-08-09 23:10:06 +09:00
parent c9eb8f82e9
commit 314b50d7c0
No known key found for this signature in database
GPG Key ID: 4BC7D6DF58D8DF60
2 changed files with 2 additions and 2 deletions

2
io.c
View File

@ -46,7 +46,7 @@
#endif #endif
#ifdef __QNXNTO__ #ifdef __QNXNTO__
#include "unix.h" #include <unix.h>
#endif #endif
#include <sys/types.h> #include <sys/types.h>

View File

@ -14,7 +14,7 @@
#include "vm_core.h" #include "vm_core.h"
#include "iseq.h" #include "iseq.h"
#ifdef HAVE_UCONTEXT_H #ifdef HAVE_UCONTEXT_H
#include "ucontext.h" #include <ucontext.h>
#endif #endif
/* see vm_insnhelper.h for the values */ /* see vm_insnhelper.h for the values */