tests: Portability fixes, replaced 0/1/-1 return codes with macros
This commit is contained in:
@@ -8,7 +8,7 @@ int main(void) {
|
||||
char* path = realpath("stdlib/realpath.c", NULL);
|
||||
if (!path) {
|
||||
perror("realpath");
|
||||
return -1;
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
puts(path);
|
||||
|
||||
@@ -21,7 +21,7 @@ int main(void) {
|
||||
if (!path) {
|
||||
perror("realpath");
|
||||
free(path);
|
||||
return -1;
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
puts(path);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user