diff options
Diffstat (limited to 'ext/standard/php3_dir.h')
-rw-r--r-- | ext/standard/php3_dir.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/standard/php3_dir.h b/ext/standard/php3_dir.h index 33e6f15643..1ab682ca84 100644 --- a/ext/standard/php3_dir.h +++ b/ext/standard/php3_dir.h @@ -38,12 +38,12 @@ extern php3_module_entry php3_dir_module_entry; /* directory functions */ extern int php3_minit_dir(INIT_FUNC_ARGS); -extern void php3_opendir(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_closedir(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_chdir(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_rewinddir(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_readdir(INTERNAL_FUNCTION_PARAMETERS); -extern void php3_getdir(INTERNAL_FUNCTION_PARAMETERS); +PHP_FUNCTION(opendir); +PHP_FUNCTION(closedir); +PHP_FUNCTION(chdir); +PHP_FUNCTION(rewinddir); +PHP_FUNCTION(readdir); +PHP_FUNCTION(getdir); #define phpext_dir_ptr php3_dir_module_ptr |