diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/env.c | 2 | ||||
-rw-r--r-- | coreutils/nice.c | 2 | ||||
-rw-r--r-- | coreutils/readlink.c | 2 | ||||
-rw-r--r-- | coreutils/shuf.c | 2 | ||||
-rw-r--r-- | coreutils/sort.c | 2 | ||||
-rw-r--r-- | coreutils/uname.c | 2 | ||||
-rw-r--r-- | coreutils/uniq.c | 2 | ||||
-rw-r--r-- | coreutils/uudecode.c | 2 | ||||
-rw-r--r-- | coreutils/uuencode.c | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/coreutils/env.c b/coreutils/env.c index a0ea4dd..6eafd06 100644 --- a/coreutils/env.c +++ b/coreutils/env.c @@ -100,7 +100,7 @@ int env_main(int argc UNUSED_PARAM, char **argv) } } - fflush_stdout_and_exit(EXIT_SUCCESS); + fflush_stdout_and_exit_SUCCESS(); } /* diff --git a/coreutils/nice.c b/coreutils/nice.c index 28591ac..e70da5d 100644 --- a/coreutils/nice.c +++ b/coreutils/nice.c @@ -33,7 +33,7 @@ int nice_main(int argc UNUSED_PARAM, char **argv) if (!*++argv) { /* No args, so (GNU) output current nice value. */ printf("%d\n", old_priority); - fflush_stdout_and_exit(EXIT_SUCCESS); + fflush_stdout_and_exit_SUCCESS(); } adjustment = 10; /* Set default adjustment. */ diff --git a/coreutils/readlink.c b/coreutils/readlink.c index 09d69df..b2e8678 100644 --- a/coreutils/readlink.c +++ b/coreutils/readlink.c @@ -96,5 +96,5 @@ int readlink_main(int argc UNUSED_PARAM, char **argv) printf((opt & 2) ? "%s" : "%s\n", buf); free(buf); - fflush_stdout_and_exit(EXIT_SUCCESS); + fflush_stdout_and_exit_SUCCESS(); } diff --git a/coreutils/shuf.c b/coreutils/shuf.c index 3def3d8..337366b 100644 --- a/coreutils/shuf.c +++ b/coreutils/shuf.c @@ -171,5 +171,5 @@ int shuf_main(int argc, char **argv) printf("%s%c", lines[i], eol); } - fflush_stdout_and_exit(EXIT_SUCCESS); + fflush_stdout_and_exit_SUCCESS(); } diff --git a/coreutils/sort.c b/coreutils/sort.c index 32a06e4..0cbb6f5 100644 --- a/coreutils/sort.c +++ b/coreutils/sort.c @@ -644,5 +644,5 @@ int sort_main(int argc UNUSED_PARAM, char **argv) printf("%s%c", lines[i], ch); } - fflush_stdout_and_exit(EXIT_SUCCESS); + fflush_stdout_and_exit_SUCCESS(); } diff --git a/coreutils/uname.c b/coreutils/uname.c index da785ab..6c0bdf0 100644 --- a/coreutils/uname.c +++ b/coreutils/uname.c @@ -209,5 +209,5 @@ int uname_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) #endif } - fflush_stdout_and_exit(EXIT_SUCCESS); /* coreutils-6.9 compat */ + fflush_stdout_and_exit_SUCCESS(); /* coreutils-6.9 compat */ } diff --git a/coreutils/uniq.c b/coreutils/uniq.c index a3058ac..06c57f7 100644 --- a/coreutils/uniq.c +++ b/coreutils/uniq.c @@ -139,5 +139,5 @@ int uniq_main(int argc UNUSED_PARAM, char **argv) die_if_ferror(stdin, input_filename); - fflush_stdout_and_exit(EXIT_SUCCESS); + fflush_stdout_and_exit_SUCCESS(); } diff --git a/coreutils/uudecode.c b/coreutils/uudecode.c index e90902f..63a8d4d 100644 --- a/coreutils/uudecode.c +++ b/coreutils/uudecode.c @@ -352,7 +352,7 @@ int baseNUM_main(int argc UNUSED_PARAM, char **argv) #undef src_buf } - fflush_stdout_and_exit(EXIT_SUCCESS); + fflush_stdout_and_exit_SUCCESS(); } #endif diff --git a/coreutils/uuencode.c b/coreutils/uuencode.c index db49ec8..f096e31 100644 --- a/coreutils/uuencode.c +++ b/coreutils/uuencode.c @@ -78,5 +78,5 @@ int uuencode_main(int argc UNUSED_PARAM, char **argv) } printf(tbl == bb_uuenc_tbl_std ? "\n`\nend\n" : "\n====\n"); - fflush_stdout_and_exit(EXIT_SUCCESS); + fflush_stdout_and_exit_SUCCESS(); } |