diff options
Diffstat (limited to 'ext/standard/php_crypt.h')
-rw-r--r-- | ext/standard/php_crypt.h | 33 |
1 files changed, 27 insertions, 6 deletions
diff --git a/ext/standard/php_crypt.h b/ext/standard/php_crypt.h index 94dbfb40f8..760a7fe777 100644 --- a/ext/standard/php_crypt.h +++ b/ext/standard/php_crypt.h @@ -1,15 +1,36 @@ +/* + +----------------------------------------------------------------------+ + | PHP version 4.0 | + +----------------------------------------------------------------------+ + | Copyright (c) 1997, 1998, 1999, 2000 The PHP Group | + +----------------------------------------------------------------------+ + | This source file is subject to version 2.01 of the PHP license, | + | that is bundled with this package in the file LICENSE, and is | + | available at through the world-wide-web at | + | http://www.php.net/license/2_01.txt. | + | If you did not receive a copy of the PHP license and are unable to | + | obtain it through the world-wide-web, please send a note to | + | license@php.net so we can mail you a copy immediately. | + +----------------------------------------------------------------------+ + | Authors: Stig Bakken <ssb@gaurdian.no> | + | Zeev Suraski <zeev@zend.com> | + | Rasmus Lerdorf <rasmus@lerdorf.on.ca> | + +----------------------------------------------------------------------+ + */ + #ifndef PHP_CRYPT_H #define PHP_CRYPT_H #if HAVE_CRYPT -extern zend_module_entry crypt_module_entry; -#define crypt_module_ptr &crypt_module_entry PHP_FUNCTION(crypt); extern PHP_MINIT_FUNCTION(crypt); -#else -#define crypt_module_ptr NULL #endif -#define phpext_crypt_ptr crypt_module_ptr - #endif + +/* + * Local variables: + * tab-width: 4 + * c-basic-offset: 4 + * End: + */ |