summaryrefslogtreecommitdiff
path: root/ext/standard/php_crypt.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/php_crypt.h')
-rw-r--r--ext/standard/php_crypt.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/ext/standard/php_crypt.h b/ext/standard/php_crypt.h
deleted file mode 100644
index 1b93431cb5..0000000000
--- a/ext/standard/php_crypt.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef PHP_CRYPT_H
-#define PHP_CRYPT_H
-
-#if HAVE_CRYPT
-extern php3_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