2014-05-03 13:36:13 -06:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2014-01-05 00:08:53 -07:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
execlp("cmdtest", "cmdtest", ".", NULL);
|
2014-05-03 13:36:13 -06:00
|
|
|
perror("Unable to execute 'cmdtest'. Make sure, that it is installed");
|
|
|
|
exit(1);
|
2014-01-05 00:08:53 -07:00
|
|
|
}
|