2025-04-27 07:49:33 -04:00

10 lines
173 B
C

// Copyright (c) 1993-1999 Microsoft Corporation
union s_lextype {
char * yystring;
int yynumber;
char yycharval;
};
typedef union s_lextype lextype_t;