diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2005-04-14 13:34:05 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2005-04-14 13:34:05 +0000 |
commit | e87127af69eef052e5c2db248ee7091af10233c6 (patch) | |
tree | 7b1a965c9ca4fb7978391d57ced3503f087b625b /ext/standard/datetime.h | |
parent | dac4eb1c702e0689eeea3ab120df13ac434644b2 (diff) | |
download | php-git-e87127af69eef052e5c2db248ee7091af10233c6.tar.gz |
MFB43: Fixed bug #31583 (php_std_date() uses short day names in
non-y2k_compliance mode).
Fixed bug #31689 (PHPAPI missing for php_std_date() and php_parse_date()).
Diffstat (limited to 'ext/standard/datetime.h')
-rw-r--r-- | ext/standard/datetime.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/datetime.h b/ext/standard/datetime.h index 755d40611d..5a4b7c3d75 100644 --- a/ext/standard/datetime.h +++ b/ext/standard/datetime.h @@ -40,11 +40,11 @@ PHP_FUNCTION(gmstrftime); #endif PHP_FUNCTION(strtotime); -int php_idate(char format, int timestamp, int gm); -extern char *php_std_date(time_t t TSRMLS_DC); -void php_mktime(INTERNAL_FUNCTION_PARAMETERS, int gm); +PHPAPI int php_idate(char format, int timestamp, int gm); +PHPAPI char *php_std_date(time_t t TSRMLS_DC); +PHPAPI void php_mktime(INTERNAL_FUNCTION_PARAMETERS, int gm); #if HAVE_STRFTIME -void _php_strftime(INTERNAL_FUNCTION_PARAMETERS, int gm); +PHPAPI void _php_strftime(INTERNAL_FUNCTION_PARAMETERS, int gm); #endif #endif /* DATETIME_H */ |