blob: c3eae2c2faa59af46befb77f0f37653c3d08fe0c [file] [log] [blame]
nethercotef6a1d502004-08-09 12:21:57 +00001#include <assert.h>
2#include <unistd.h>
3
4int main(void)
5{
6 execve(NULL, NULL, NULL);
7 execve("../../tests/true", NULL, NULL);
8 assert(0); // shouldn't get here
9}