Files
epics-base/modules/libcom/src/flex/libmain.c
Andrew Johnson 60aaa16e1d Removed EPICS license header and (c) from flex sources
These should never have been added in the first place.
2020-08-03 11:49:56 -05:00

9 lines
141 B
C

/* libmain - flex run-time support library "main" function */
extern int yylex();
int main(int argc, char *argv[])
{
return yylex();
}