| 2491 | } |
| 2492 | |
| 2493 | void *yyrealloc (void * ptr, yy_size_t size , yyscan_t yyscanner) |
| 2494 | { |
| 2495 | struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| 2496 | (void)yyg; |
| 2497 | |
| 2498 | /* The cast to (char *) in the following accommodates both |
| 2499 | * implementations that use char* generic pointers, and those |
| 2500 | * that use void* generic pointers. It works with the latter |
| 2501 | * because both ANSI C and C++ allow castless assignment from |
| 2502 | * any pointer type to void*, and deal with argument conversions |
| 2503 | * as though doing an assignment. |
| 2504 | */ |
| 2505 | return realloc(ptr, size); |
| 2506 | } |
| 2507 | |
| 2508 | void yyfree (void * ptr , yyscan_t yyscanner) |
| 2509 | { |
no outgoing calls
no test coverage detected