summaryrefslogtreecommitdiff
path: root/ext/standard/php_crypt.h
diff options
context:
space:
mode:
authorStig Bakken <ssb@php.net>2000-03-06 20:37:11 +0000
committerStig Bakken <ssb@php.net>2000-03-06 20:37:11 +0000
commit99e0b36321236c1bcf9d60c1e3ed07050b55a20f (patch)
tree624ad6ac28695d278db7a783626e44177a7d3924 /ext/standard/php_crypt.h
parent031808cd1b0f584b9c37af5fc7edecf63977da10 (diff)
downloadphp-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/php_crypt.h')
-rw-r--r--ext/standard/php_crypt.h33
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:
+ */