diff options
Diffstat (limited to 'ext/standard/datetime.h')
-rw-r--r-- | ext/standard/datetime.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/standard/datetime.h b/ext/standard/datetime.h index 2e8f61f53d..6171197c61 100644 --- a/ext/standard/datetime.h +++ b/ext/standard/datetime.h @@ -44,10 +44,14 @@ PHP_FUNCTION(getdate); PHP_FUNCTION(checkdate); #if HAVE_STRFTIME PHP_FUNCTION(strftime); +PHP_FUNCTION(gmstrftime); #endif PHP_FUNCTION(strtotime); extern char *php_std_date(time_t t); void php_mktime(INTERNAL_FUNCTION_PARAMETERS, int gm); +#if HAVE_STRFTIME +void _php_strftime(INTERNAL_FUNCTION_PARAMETERS, int gm); +#endif #endif /* _DATETIME_H */ |