Parent Directory
|
Revision Log
|
Patch
| revision 209305 by kan, Fri Jun 18 16:07:24 2010 UTC | revision 209358 by marcel, Sun Jun 20 00:34:06 2010 UTC | |
|---|---|---|
| # | Line 67 | Line 67 |
| 67 | * for all subsequent invocations, which is the effect desired. | * for all subsequent invocations, which is the effect desired. |
| 68 | */ | */ |
| 69 | #undef unput | #undef unput |
| 70 | #define unput(c) \ | #define unput(c) \ |
| 71 | if (c != EOF) yyunput( c, yytext_ptr ) | do { \ |
| 72 | int _c = c; \ | |
| 73 | if (_c != EOF) \ | |
| 74 | yyunput(_c, yytext_ptr); \ | |
| 75 | } while(0) | |
| 76 | #endif | #endif |
| 77 | ||
| 78 | static int id_or_type(const char *); | static int id_or_type(const char *); |
|
||||||||
| ViewVC Help | |
| Powered by ViewVC 1.1.27 |