| 5122 | } |
| 5123 | |
| 5124 | void *yyrealloc (void * ptr, yy_size_t size , yyscan_t yyscanner) |
| 5125 | { |
| 5126 | struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| 5127 | (void)yyg; |
| 5128 | |
| 5129 | /* The cast to (char *) in the following accommodates both |
| 5130 | * implementations that use char* generic pointers, and those |
| 5131 | * that use void* generic pointers. It works with the latter |
| 5132 | * because both ANSI C and C++ allow castless assignment from |
| 5133 | * any pointer type to void*, and deal with argument conversions |
| 5134 | * as though doing an assignment. |
| 5135 | */ |
| 5136 | return realloc(ptr, size); |
| 5137 | } |
| 5138 | |
| 5139 | void yyfree (void * ptr , yyscan_t yyscanner) |
| 5140 | { |
no outgoing calls
no test coverage detected