9 lines
182 B
C
9 lines
182 B
C
// makeCWrapper /path/to/executable \
|
|
--inherit-argv0
|
|
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
return execv("/path/to/executable", argv);
|
|
} |