Add missing #include in sysdeps/posix/opendir.c.

This commit is contained in:
Roland McGrath 2013-05-01 09:27:09 -07:00
parent 0695940b8a
commit 1324e37f2e
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2013-05-01 Roland McGrath <roland@hack.frob.com>
* sysdeps/posix/opendir.c: Include <sys/param.h> to get MIN/MAX macros.
2013-05-01 Richard Smith <richard@metafoo.co.uk>
* misc/sys/cdefs.h (__extern_inline, __extern_always_inline)

View File

@ -22,6 +22,7 @@
#include <stdlib.h>
#include <dirent.h>
#include <fcntl.h>
#include <sys/param.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>