xenocara/app/xauth/tests/test_xauth.c
2014-05-03 19:36:13 +00:00

11 lines
231 B
C

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main(int argc, char *argv[])
{
execlp("cmdtest", "cmdtest", ".", NULL);
perror("Unable to execute 'cmdtest'. Make sure, that it is installed");
exit(1);
}