shithub: riscv

ref: 9c2e8e2b13b0d01b7adf88b61af6edfbddd872c1
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);
}