summaryrefslogtreecommitdiff
path: root/ext/standard/basic_functions.c
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2000-12-07 12:09:38 +0000
committerSascha Schumann <sas@php.net>2000-12-07 12:09:38 +0000
commit4ada3dd3a058f8ae0899078e23753086dd19b27e (patch)
tree383272b809237658f49e0f289743e2d778cc45d1 /ext/standard/basic_functions.c
parent9d50bc01616c17c6d3a437c7eac0be7644165e57 (diff)
downloadphp-git-4ada3dd3a058f8ae0899078e23753086dd19b27e.tar.gz
Hardcode all functions which are mentioned in the Large File Support Spec
http://ewe3.sas.com/standards/large.file/specs/api+.007.html
Diffstat (limited to 'ext/standard/basic_functions.c')
-rw-r--r--ext/standard/basic_functions.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c
index dbb6e7cb54..ee4aa93c26 100644
--- a/ext/standard/basic_functions.c
+++ b/ext/standard/basic_functions.c
@@ -393,10 +393,10 @@ function_entry basic_functions[] = {
PHP_FE(fgets, NULL)
PHP_FE(fgetss, NULL)
PHP_FE(fread, NULL)
- PHP_FE(fopen, NULL)
+ PHP_STATIC_FE("fopen", php_if_fopen, NULL)
PHP_FE(fpassthru, NULL)
- PHP_FE(ftruncate, NULL)
- PHP_FE(fstat, NULL)
+ PHP_STATIC_FE("ftruncate", php_if_ftruncate, NULL)
+ PHP_STATIC_FE("fstat", php_if_fstat, NULL)
PHP_FE(fseek, NULL)
PHP_FE(ftell, NULL)
PHP_FE(fflush, NULL)
@@ -406,7 +406,7 @@ function_entry basic_functions[] = {
PHP_FE(rename, NULL)
PHP_FE(copy, NULL)
PHP_FE(tempnam, NULL)
- PHP_FE(tmpfile, NULL)
+ PHP_STATIC_FE("tmpfile", php_if_tmpfile, NULL)
PHP_FE(file, NULL)
PHP_FE(fgetcsv, NULL)
PHP_FE(flock, NULL)
@@ -473,8 +473,8 @@ function_entry basic_functions[] = {
PHP_FE(is_file, NULL)
PHP_FE(is_dir, NULL)
PHP_FE(is_link, NULL)
- PHP_FE(stat, NULL)
- PHP_FE(lstat, NULL)
+ PHP_STATIC_FE("stat", php_if_stat, NULL)
+ PHP_STATIC_FE("lstat", php_if_lstat, NULL)
PHP_FE(chown, NULL)
PHP_FE(chgrp, NULL)
PHP_FE(chmod, NULL)