diff options
author | Stig Bakken <ssb@php.net> | 2000-03-06 20:37:11 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2000-03-06 20:37:11 +0000 |
commit | 99e0b36321236c1bcf9d60c1e3ed07050b55a20f (patch) | |
tree | 624ad6ac28695d278db7a783626e44177a7d3924 /ext/standard/crypt.c | |
parent | 031808cd1b0f584b9c37af5fc7edecf63977da10 (diff) | |
download | php-git-99e0b36321236c1bcf9d60c1e3ed07050b55a20f.tar.gz |
@Cleaned up extension namespace (Stig)
Cleaned up extension namespace, and changed ext/standard into one single
extension.
Diffstat (limited to 'ext/standard/crypt.c')
-rw-r--r-- | ext/standard/crypt.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/ext/standard/crypt.c b/ext/standard/crypt.c index 1d5c1bd5c3..2ac3400b99 100644 --- a/ext/standard/crypt.c +++ b/ext/standard/crypt.c @@ -48,16 +48,6 @@ extern char *crypt(char *__key,char *__salt); #include "php_crypt.h" -function_entry crypt_functions[] = { - PHP_FE(crypt, NULL) - {NULL, NULL, NULL} -}; - -zend_module_entry crypt_module_entry = { - "Crypt", crypt_functions, PHP_MINIT(crypt), NULL, NULL, NULL, NULL, STANDARD_MODULE_PROPERTIES -}; - - /* The capabilities of the crypt() function is determined by the test programs run by configure from aclocal.m4. They will set PHP_STD_DES_CRYPT, |