Revert Dericks accidental commit :-)

Add an Id tag so we can see at a glance who is to blame.
This commit is contained in:
Wez Furlong 2002-09-09 19:09:23 +00:00
parent bd7144a803
commit 6bc7e97161

View File

@ -8,6 +8,8 @@
** This code is in the public domain and has no copyright.
*/
/* $Id$ */
#include "php.h"
#ifdef PHP_WIN32
@ -205,26 +207,18 @@ 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");
}
;