| 2538 | } |
| 2539 | |
| 2540 | void *yyrealloc (void * ptr, yy_size_t size , yyscan_t yyscanner) |
| 2541 | { |
| 2542 | struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; |
| 2543 | (void)yyg; |
| 2544 | |
| 2545 | /* The cast to (char *) in the following accommodates both |
| 2546 | * implementations that use char* generic pointers, and those |
| 2547 | * that use void* generic pointers. It works with the latter |
| 2548 | * because both ANSI C and C++ allow castless assignment from |
| 2549 | * any pointer type to void*, and deal with argument conversions |
| 2550 | * as though doing an assignment. |
| 2551 | */ |
| 2552 | return realloc(ptr, size); |
| 2553 | } |
| 2554 | |
| 2555 | void yyfree (void * ptr , yyscan_t yyscanner) |
| 2556 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…