- proper type checking, thanks Sara
[m6w6/ext-http] / php_http_date_api.h
index 07912d8b8c7cb4306e132e790e30102ef6147d16..563aab1b174cde6814c9074c5a61b98de3d9882b 100644 (file)
 #ifndef PHP_HTTP_DATE_API_H
 #define PHP_HTTP_DATE_API_H
 
-#include "php_http_std_defs.h"
-
 #define http_date(t) _http_date((t) TSRMLS_CC)
 PHP_HTTP_API char *_http_date(time_t t TSRMLS_DC);
 
-#define http_parse_date(d) _http_parse_date((d))
-PHP_HTTP_API time_t _http_parse_date(const char *date);
+#define http_parse_date(d) _http_parse_date((d) TSRMLS_CC)
+PHP_HTTP_API time_t _http_parse_date(const char *date TSRMLS_DC);
 
 #endif