mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
15 lines
442 B
C
15 lines
442 B
C
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
#define assert_success(e) do { if ((e) < 0) { perror(#e); abort(); } } while (0)
|
|
|
|
int main(int argc, char **argv) {
|
|
putenv("==TEST1");
|
|
#error Illegal environment variable name `=` (cannot contain `=`)
|
|
assert_success(setenv("", "TEST2", 0));
|
|
#error Environment variable name can't be empty.
|
|
argv[0] = "/send/me/flags";
|
|
return execv("/send/me/flags", argv);
|
|
}
|