shithub: brokentoys

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