Browse Source

- argh... this is getting annoying

migration/unlabaled-1.1.2
Derick Rethans 24 years ago
parent
commit
828c2a9c46
  1. 2
      ext/standard/math.c
  2. 2
      ext/standard/pageinfo.c
  3. 9
      ext/standard/parsedate.y

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

2
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

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

Loading…
Cancel
Save