shithub: riscv

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