1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

#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
#ifdef __QNXNTO__
#include "unix.h"
#include <unix.h>
#endif
#include <sys/types.h>

View file

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