From: Derick Rethans Date: Fri, 6 Sep 2002 07:47:49 +0000 (+0000) Subject: - argh... this is getting annoying X-Git-Tag: RELEASE_0_91~74 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=828c2a9c46283f5e58c5870b131016b1d72fab99;p=php - argh... this is getting annoying --- diff --git a/ext/standard/math.c b/ext/standard/math.c index 6e9dfe07c4..2368da4aa6 100644 --- a/ext/standard/math.c +++ b/ext/standard/math.c @@ -314,7 +314,6 @@ PHP_FUNCTION(tanh) /* }}} */ -/*#ifndef PHP_WIN32*/ #if !defined(PHP_WIN32) && !defined(NETWARE) /* {{{ proto float asinh(float number) Returns the inverse hyperbolic sine of the number, i.e. the value whose hyperbolic sine is number */ @@ -472,7 +471,6 @@ PHP_FUNCTION(exp) /* }}} */ -/*#ifndef PHP_WIN32*/ #if !defined(PHP_WIN32) && !defined(NETWARE) /* {{{ proto float expm1(float number) Returns exp(number) - 1, computed in a way that accurate even when the value of number is close to zero */ diff --git a/ext/standard/pageinfo.c b/ext/standard/pageinfo.c index 0cfd948544..a7a56c5682 100644 --- a/ext/standard/pageinfo.c +++ b/ext/standard/pageinfo.c @@ -78,7 +78,7 @@ PHPAPI void php_statpage(TSRMLS_D) BG(page_gid) = pstat->st_gid; BG(page_inode) = pstat->st_ino; #if defined(NETWARE) && defined(NEW_LIBC) - BG(page_mtime) = (pstat->st_mtime).tv_nsec; + BG(page_mtime) = (pstat->st_mtime).tv_nsec; #else BG(page_mtime) = pstat->st_mtime; #endif diff --git a/ext/standard/parsedate.y b/ext/standard/parsedate.y index 54b6c9d432..4f4228e44b 100644 --- a/ext/standard/parsedate.y +++ b/ext/standard/parsedate.y @@ -205,20 +205,27 @@ spec : /* NULL */ item : time { yyHaveTime++; + printf ("TIME"); } | zone { yyHaveZone++; + printf ("ZONE"); } | date { yyHaveDate++; + printf ("DATE"); } | day { yyHaveDay++; + printf ("DAY"); } | rel { yyHaveRel++; + printf ("REL"); + } + | number { + printf ("NUMBER"); } - | number ; time : tUNUMBER tMERIDIAN {