/* Test whether a basic exit invocation works. */

#include <stdlib.h>

#include "../basic.h"

int main(void)
{
	exit(0);
	return 1;
}
