4859c222e7
libiconv expects program_invocation_name to be an lvalue
14 lines
269 B
C
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);
|
|
}
|