summaryrefslogtreecommitdiff
path: root/ext/standard/php_crypt.h
diff options
context:
space:
mode:
authorHartmut Holzgraefe <hholzgra@php.net>2000-05-26 17:04:02 +0000
committerHartmut Holzgraefe <hholzgra@php.net>2000-05-26 17:04:02 +0000
commit69d1e788c022620f7b7f81a6071e67ce37e6034d (patch)
treee13e0b9016827cdcada7acef8164fe5c0944db6a /ext/standard/php_crypt.h
parent9bfd5e5e555372604ff69642dc32ef6e2e9444db (diff)
downloadphp-git-69d1e788c022620f7b7f81a6071e67ce37e6034d.tar.gz
if a module provides a function it should also do so if the function
is not functional due to configure findings the function should offer a meaningful warning if it is not supported instead of just beeing undefined i had already changed this in 'gd', now this is doing it for 'standard'
Diffstat (limited to 'ext/standard/php_crypt.h')
-rw-r--r--ext/standard/php_crypt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/php_crypt.h b/ext/standard/php_crypt.h
index c10af21be4..036ade2abe 100644
--- a/ext/standard/php_crypt.h
+++ b/ext/standard/php_crypt.h
@@ -21,8 +21,8 @@
#ifndef PHP_CRYPT_H
#define PHP_CRYPT_H
-#if HAVE_CRYPT
PHP_FUNCTION(crypt);
+#if HAVE_CRYPT
extern PHP_MINIT_FUNCTION(crypt);
#endif