code: plan9front

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