#include "php_globals.h"
#include "SAPI.h"
-#if APACHE
-/*
- ap_compat.h does a
- #define md5 ap_md5
- which "kills" out md5 function.
-*/
-#undef md5
-#endif
#ifdef ZTS
int basic_globals_id;
PHP_FE(htmlentities, NULL)
PHP_FE(get_html_translation_table, NULL)
- PHP_FE(md5, NULL)
+ PHP_NAMED_FE(md5, php_if_md5, NULL)
PHP_FE(iptcparse, NULL)
PHP_FE(iptcembed, NULL)
/* {{{ proto string md5(string str)
Calculate the md5 hash of a string */
-PHP_FUNCTION(md5)
+PHP_NAMED_FUNCTION(php_if_md5)
{
pval **arg;
char md5str[33];
void PHP3_MD5Update PROTO_LIST((PHP3_MD5_CTX *, const unsigned char *, unsigned int));
void PHP3_MD5Final PROTO_LIST((unsigned char[16], PHP3_MD5_CTX *));
-PHP_FUNCTION(md5);
+PHP_NAMED_FUNCTION(php_if_md5);
#endif