mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01:00
15 lines
178 B
C
15 lines
178 B
C
/*
|
|
* Execve test.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
#include <tests.h>
|
|
|
|
void exectest(void)
|
|
{
|
|
execve("/usr/home/bahadir/executable", 0, 0);
|
|
}
|
|
|