summaryrefslogtreecommitdiff
path: root/ext/standard/php3_crypt.h
diff options
context:
space:
mode:
authorStig Bakken <ssb@php.net>1999-04-22 00:25:57 +0000
committerStig Bakken <ssb@php.net>1999-04-22 00:25:57 +0000
commitff377329973b5708afd5990b8d8697e706f3f749 (patch)
tree1117d2ad233d6ae11fa5abcfaf74c157c2e56ed3 /ext/standard/php3_crypt.h
parentf582bec9db6bd87426fee28e7992a0ffc8b01598 (diff)
downloadphp-git-ff377329973b5708afd5990b8d8697e706f3f749.tar.gz
moved fdf, hyperwave, informix and some smaller files
Diffstat (limited to 'ext/standard/php3_crypt.h')
-rw-r--r--ext/standard/php3_crypt.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/ext/standard/php3_crypt.h b/ext/standard/php3_crypt.h
new file mode 100644
index 0000000000..c740dc55ec
--- /dev/null
+++ b/ext/standard/php3_crypt.h
@@ -0,0 +1,13 @@
+#ifndef PHP3_CRYPT_H
+#define PHP3_CRYPT_H
+
+#if HAVE_CRYPT
+extern php3_module_entry crypt_module_entry;
+#define crypt_module_ptr &crypt_module_entry
+extern void php3_crypt(INTERNAL_FUNCTION_PARAMETERS);
+extern int php_minit_crypt(INIT_FUNC_ARGS);
+#else
+#define crypt_module_ptr NULL
+#endif
+
+#endif