shithub: brokentoys

ref: e95e3c07981eab6b39a04df5446c998194acb6a2
dir: /ret.c/

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

int
ret(void)
{
	if(2 > 3)
		return 2;
	else
		exits("error");
	return -1;
}

void
main()
{
	ret();
	exits(0);
}