- argh... this is getting annoying

This commit is contained in:
Derick Rethans 2002-09-06 07:47:49 +00:00
parent 338332c799
commit 828c2a9c46
3 changed files with 9 additions and 4 deletions

View File

@ -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 */

View File

@ -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

View File

@ -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 {