summaryrefslogtreecommitdiff
path: root/ext/posix/php_posix.h
diff options
context:
space:
mode:
authorMáté Kocsis <kocsismate@woohoolabs.com>2020-04-05 21:15:30 +0200
committerMáté Kocsis <kocsismate@woohoolabs.com>2020-04-05 21:15:30 +0200
commit21cfa03f1740042d0c48269430e0490e319e1408 (patch)
tree23b051bee2443030478248734442bf7a1e3fcb58 /ext/posix/php_posix.h
parentc0cbab6002f8b111396c3ab2b9df92cbd0b3448a (diff)
downloadphp-git-21cfa03f1740042d0c48269430e0490e319e1408.tar.gz
Generate function entries for another batch of extensions
Closes GH-5352
Diffstat (limited to 'ext/posix/php_posix.h')
-rw-r--r--ext/posix/php_posix.h87
1 files changed, 0 insertions, 87 deletions
diff --git a/ext/posix/php_posix.h b/ext/posix/php_posix.h
index 3f99c1af5f..55a096dc59 100644
--- a/ext/posix/php_posix.h
+++ b/ext/posix/php_posix.h
@@ -32,93 +32,6 @@ extern zend_module_entry posix_module_entry;
#include "php_version.h"
#define PHP_POSIX_VERSION PHP_VERSION
-/* POSIX.1, 3.3 */
-PHP_FUNCTION(posix_kill);
-
-/* POSIX.1, 4.1 */
-PHP_FUNCTION(posix_getpid);
-PHP_FUNCTION(posix_getppid);
-
-/* POSIX.1, 4.2 */
-PHP_FUNCTION(posix_getuid);
-PHP_FUNCTION(posix_getgid);
-PHP_FUNCTION(posix_geteuid);
-PHP_FUNCTION(posix_getegid);
-PHP_FUNCTION(posix_setuid);
-PHP_FUNCTION(posix_setgid);
-#ifdef HAVE_SETEUID
-PHP_FUNCTION(posix_seteuid);
-#endif
-#ifdef HAVE_SETEGID
-PHP_FUNCTION(posix_setegid);
-#endif
-#ifdef HAVE_GETGROUPS
-PHP_FUNCTION(posix_getgroups);
-#endif
-#ifdef HAVE_GETLOGIN
-PHP_FUNCTION(posix_getlogin);
-#endif
-
-/* POSIX.1, 4.3 */
-PHP_FUNCTION(posix_getpgrp);
-#ifdef HAVE_SETSID
-PHP_FUNCTION(posix_setsid);
-#endif
-PHP_FUNCTION(posix_setpgid);
-/* Non-Posix functions which are common */
-#ifdef HAVE_GETPGID
-PHP_FUNCTION(posix_getpgid);
-#endif
-#ifdef HAVE_GETSID
-PHP_FUNCTION(posix_getsid);
-#endif
-
-/* POSIX.1, 4.4 */
-PHP_FUNCTION(posix_uname);
-PHP_FUNCTION(posix_times);
-
-/* POSIX.1, 4.5 */
-#ifdef HAVE_CTERMID
-PHP_FUNCTION(posix_ctermid);
-#endif
-PHP_FUNCTION(posix_ttyname);
-PHP_FUNCTION(posix_isatty);
-
-/* POSIX.1, 5.2 */
-PHP_FUNCTION(posix_getcwd);
-
-/* POSIX.1, 5.4 */
-#ifdef HAVE_MKFIFO
-PHP_FUNCTION(posix_mkfifo);
-#endif
-#ifdef HAVE_MKNOD
-PHP_FUNCTION(posix_mknod);
-#endif
-
-/* POSIX.1, 5.6 */
-PHP_FUNCTION(posix_access);
-
-/* POSIX.1, 9.2 */
-PHP_FUNCTION(posix_getgrnam);
-PHP_FUNCTION(posix_getgrgid);
-PHP_FUNCTION(posix_getpwnam);
-PHP_FUNCTION(posix_getpwuid);
-
-#ifdef HAVE_GETRLIMIT
-PHP_FUNCTION(posix_getrlimit);
-#endif
-
-#ifdef HAVE_SETRLIMIT
-PHP_FUNCTION(posix_setrlimit);
-#endif
-
-#ifdef HAVE_INITGROUPS
-PHP_FUNCTION(posix_initgroups);
-#endif
-
-PHP_FUNCTION(posix_get_last_error);
-PHP_FUNCTION(posix_strerror);
-
ZEND_BEGIN_MODULE_GLOBALS(posix)
int last_error;
ZEND_END_MODULE_GLOBALS(posix)