Define FNM_CASEFOLD to 0 for AIX, from Eric N Vander Weele.

pull/2030/head
Nicholas Marriott 2019-12-16 21:34:36 +00:00
parent 479d411dda
commit 3879509426
1 changed files with 5 additions and 0 deletions

View File

@ -21,6 +21,7 @@
#include <sys/ioctl.h>
#include <sys/uio.h>
#include <fnmatch.h>
#include <limits.h>
#include <stdio.h>
#include <termios.h>
@ -169,6 +170,10 @@ void warnx(const char *, ...);
#define O_DIRECTORY 0
#endif
#ifndef FNM_CASEFOLD
#define FNM_CASEFOLD 0
#endif
#ifndef INFTIM
#define INFTIM -1
#endif