diff options
author | Nikita Popov <nikic@php.net> | 2016-03-25 21:06:10 +0100 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2016-03-25 21:09:47 +0100 |
commit | d3ed75b9ebc998b8cf325e0e3ab954bd10989918 (patch) | |
tree | 92ddae9a4a87f7f410f954c393a56ee22c256238 /ext/standard/php_crypt.h | |
parent | be7a50b9ab4f17b224f82e32dddd249b17f6ba36 (diff) | |
download | php-git-d3ed75b9ebc998b8cf325e0e3ab954bd10989918.tar.gz |
Remove HAVE_CRYPT checks
We always provide a crypt implementation. HAVE_CRYPT is only
relevant as to whether the crypt() C function exists.
Diffstat (limited to 'ext/standard/php_crypt.h')
-rw-r--r-- | ext/standard/php_crypt.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/standard/php_crypt.h b/ext/standard/php_crypt.h index bf7a13333f..cff71d867b 100644 --- a/ext/standard/php_crypt.h +++ b/ext/standard/php_crypt.h @@ -25,11 +25,9 @@ PHPAPI zend_string *php_crypt(const char *password, const int pass_len, const char *salt, int salt_len, zend_bool quiet); PHP_FUNCTION(crypt); -#if HAVE_CRYPT PHP_MINIT_FUNCTION(crypt); PHP_MSHUTDOWN_FUNCTION(crypt); PHP_RINIT_FUNCTION(crypt); -#endif #endif |