* 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
Родитель d51b836fdd
Коммит a96034cf10
2 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -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.

Просмотреть файл

@ -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