diff options
Diffstat (limited to 'ext/standard/ftok.c')
-rw-r--r-- | ext/standard/ftok.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/standard/ftok.c b/ext/standard/ftok.c index e9ec6b5eaa..02cf61daf6 100644 --- a/ext/standard/ftok.c +++ b/ext/standard/ftok.c @@ -26,6 +26,10 @@ #include <sys/ipc.h> #endif +#ifdef PHP_WIN32 +#include "win32/ipc.h" +#endif + #if HAVE_FTOK /* {{{ proto int ftok(string pathname, string proj) Convert a pathname and a project identifier to a System V IPC key */ |