diff options
-rw-r--r-- | ext/posix/posix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/posix/posix.c b/ext/posix/posix.c index 81ea571c3a..567c9551b2 100644 --- a/ext/posix/posix.c +++ b/ext/posix/posix.c @@ -63,12 +63,12 @@ function_entry posix_functions[] = { #ifdef HAVE_SETEUID PHP_FE(posix_seteuid, NULL) #endif -#ifdef HAVE_SETEGID PHP_FE(posix_getgid, NULL) -#endif PHP_FE(posix_setgid, NULL) PHP_FE(posix_getegid, NULL) +#ifdef HAVE_SETEGID PHP_FE(posix_setegid, NULL) +#endif PHP_FE(posix_getgroups, NULL) PHP_FE(posix_getlogin, NULL) |