diff options
author | Derick Rethans <derick@php.net> | 2002-04-10 06:22:12 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2002-04-10 06:22:12 +0000 |
commit | a19078870e3d31f9f04b22b98739a027508fcfcb (patch) | |
tree | 698848d474deb084db0e9e80c39119a10443ac15 /ext/posix/posix.c | |
parent | bd9cf79efb8c8eaf8a809f8643036085250e7568 (diff) | |
download | php-git-a19078870e3d31f9f04b22b98739a027508fcfcb.tar.gz |
- Fix defines
Diffstat (limited to 'ext/posix/posix.c')
-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) |