diff options
author | Magnus M��tt� <magnus@php.net> | 2005-05-13 21:38:17 +0000 |
---|---|---|
committer | Magnus M��tt� <magnus@php.net> | 2005-05-13 21:38:17 +0000 |
commit | 1c7d86ad2a94ccec0a5b5bf526d0366838f33367 (patch) | |
tree | 24e07db3b359e74e95b4fc836eac0c429b8aa6d6 /ext/posix/php_posix.h | |
parent | 4f778ca31d3a1c71f9eeab0f9e29f3e462fc8f19 (diff) | |
download | php-git-1c7d86ad2a94ccec0a5b5bf526d0366838f33367.tar.gz |
Added new function: posix_mknod().
Diffstat (limited to 'ext/posix/php_posix.h')
-rw-r--r-- | ext/posix/php_posix.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/posix/php_posix.h b/ext/posix/php_posix.h index eff5efcf30..bcc7874785 100644 --- a/ext/posix/php_posix.h +++ b/ext/posix/php_posix.h @@ -93,6 +93,9 @@ PHP_FUNCTION(posix_getcwd); #ifdef HAVE_MKFIFO PHP_FUNCTION(posix_mkfifo); #endif +#ifdef HAVE_MKNOD +PHP_FUNCTION(posix_mknod); +#endif /* POSIX.1, 5.6 */ PHP_FUNCTION(posix_access); |