diff options
Diffstat (limited to 'ext/standard/crypt.c')
-rw-r--r-- | ext/standard/crypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/crypt.c b/ext/standard/crypt.c index 4f44a434f4..c241a0fef2 100644 --- a/ext/standard/crypt.c +++ b/ext/standard/crypt.c @@ -49,7 +49,7 @@ extern char *crypt(char *__key,char *__salt); #include "php3_crypt.h" function_entry crypt_functions[] = { - {"crypt", php3_crypt, NULL}, + PHP_FE(crypt, NULL) {NULL, NULL, NULL} }; |