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

* ext/-test-/file/fs.c: OpenBSD needs sys/param.h before sys/mount.h.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50241 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2015-04-12 00:01:11 +00:00
parent d51b836fdd
commit a96034cf10
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Sun Apr 12 08:56:44 2015 Tanaka Akira <akr@fsij.org>
* ext/-test-/file/fs.c: OpenBSD needs sys/param.h before sys/mount.h.
Sun Apr 12 08:52:01 2015 Tanaka Akira <akr@fsij.org>
* test/ruby/test_file_exhaustive.rb: Test suid, sgid and sticky file.

View file

@ -1,6 +1,9 @@
#include "ruby/ruby.h"
#include "ruby/io.h"
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#ifdef HAVE_SYS_MOUNT_H
#include <sys/mount.h>
#endif