diff options
author | Andi Gutmans <andi@php.net> | 1999-09-05 19:04:40 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 1999-09-05 19:04:40 +0000 |
commit | 14d9a59f1cbc9c8f9cf9e4d955549dc8c1fc7334 (patch) | |
tree | 890afb23001883a0806ce9c380c88f7ca50673fb /win32 | |
parent | 99947a251ed175582243f66bcd014478ae975de6 (diff) | |
download | php-git-14d9a59f1cbc9c8f9cf9e4d955549dc8c1fc7334.tar.gz |
- Make dir functions compile in Win32
- Fix too early memory manager initialization (For you Thies)
Diffstat (limited to 'win32')
-rw-r--r-- | win32/readdir.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/win32/readdir.h b/win32/readdir.h index febaff2798..d7edb586f5 100644 --- a/win32/readdir.h +++ b/win32/readdir.h @@ -30,8 +30,9 @@ typedef struct { } DIR; /* Function prototypes */ -extern DIR *opendir(const char *); -extern struct dirent *readdir(DIR *); -extern int closedir(DIR *); +DIR *opendir(const char *); +struct dirent *readdir(DIR *); +int closedir(DIR *); +void rewinddir(DIR *); + #endif -extern void rewinddir(DIR *); |