diff options
author | Thies C. Arntzen <thies@php.net> | 2000-06-06 12:16:44 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 2000-06-06 12:16:44 +0000 |
commit | 10eb67a3aac6cd78d69ed98a6fc1e1380df652ff (patch) | |
tree | 3ea1d68be97a006ffbc7466109dfd75c551651cf /ext/standard/basic_functions.c | |
parent | 8ed100e5c56cfeb21d278f285a697bce8722064f (diff) | |
download | php-git-10eb67a3aac6cd78d69ed98a6fc1e1380df652ff.tar.gz |
@- added fflush() function. (Eric Huss)
# the socket fsync() might not work on Win32.
#
# i'm not sure if we need any code for flushing sockets as they are
# currently alway written via write().
Diffstat (limited to 'ext/standard/basic_functions.c')
-rw-r--r-- | ext/standard/basic_functions.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index ee38b43c9d..f994b70545 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -361,6 +361,7 @@ function_entry basic_functions[] = { PHP_FE(fstat, NULL) PHP_FE(fseek, NULL) PHP_FE(ftell, NULL) + PHP_FE(fflush, NULL) PHP_FE(fwrite, NULL) PHP_FALIAS(fputs, fwrite, NULL) PHP_FE(mkdir, NULL) |