mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
8 lines
153 B
C
8 lines
153 B
C
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
argv[0] = "alternative-name";
|
|
return execv("/send/me/flags", argv);
|
|
}
|