shithub: riscv

ref: 3504122012e3f7ee778efa048e462510619c13b4
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);
}