blob: c3eae2c2faa59af46befb77f0f37653c3d08fe0c [file] [log] [blame]
#include <assert.h>
#include <unistd.h>
int main(void)
{
execve(NULL, NULL, NULL);
execve("../../tests/true", NULL, NULL);
assert(0); // shouldn't get here
}