1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

- Fix includes

This commit is contained in:
Derick Rethans
2003-01-28 16:05:34 +00:00
parent 4fe6fc8b0b
commit 1ca8d7d4c3

View File

@@ -25,22 +25,22 @@
#endif
#ifndef HAVE_SCANDIR
#include <sys/types.h>
#include <sys/types.h>
#ifdef HAVE_DIRENT_H
#include <dirent.h>
#endif
#ifdef HAVE_DIRENT_H
#include <dirent.h>
#endif
#ifdef PHP_WIN32
#include "win32/readdir.h"
#endif
#ifdef PHP_WIN32
#include "win32/readdir.h"
#endif
#include <stdlib.h>
#include <search.h>
#include <stdlib.h>
#include <search.h>
#endif
#ifndef HAVE_ALPHASORT
#include <string.h>
#include <string.h>
int alphasort(const struct dirent **a, const struct dirent **b)
{