shithub: riscv

ref: 9984f40f07b94a2b71074d78237ff87d893ccf1e
dir: /sys/src/liblex/main.c/

View raw version
#include	<u.h>
#include	<libc.h>
#include	<stdio.h>

int	yylex(void);

void
main(int argc, char *argv[])
{
	USED(argc, argv);
	yylex();
	exits(0);
}