Files
RedBear-OS/tests/errno.c
T
Steve McKay 4859c222e7 Make program_invocation_name modifiable
libiconv expects program_invocation_name to be an lvalue
2019-08-17 12:35:43 -04:00

14 lines
269 B
C

#include <errno.h>
#include <stdio.h>
#include "test_helpers.h"
int main(int argc, char **argv) {
puts(argv[0]);
puts(program_invocation_name);
program_invocation_name = "yes, you can change this";
puts(argv[0]);
puts(program_invocation_name);
}