From: Kevin Day Date: Wed, 31 Dec 2014 01:57:34 +0000 (-0600) Subject: Update: uncomment pipe detection code in return_code and fss_return_code X-Git-Tag: 0.4.2~16 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=fcdebdee58ab17a5b7915c2b278b546f284a8db8;p=fll Update: uncomment pipe detection code in return_code and fss_return_code Not sure why this was disabled, perhaps it was not implemented? At least, enable the variable. --- diff --git a/level_3/fss_return_code/c/main.c b/level_3/fss_return_code/c/main.c index a450891..266212f 100644 --- a/level_3/fss_return_code/c/main.c +++ b/level_3/fss_return_code/c/main.c @@ -3,11 +3,9 @@ int main(const f_array_length argc, const f_string argv[]) { fss_return_code_data data = fss_return_code_data_initialize; - /* if (f_pipe_exists()) { data.process_pipe = f_true; } - */ return fss_return_code_main(argc, argv, &data); } diff --git a/level_3/return_code/c/main.c b/level_3/return_code/c/main.c index fba08ce..2476a69 100644 --- a/level_3/return_code/c/main.c +++ b/level_3/return_code/c/main.c @@ -3,11 +3,9 @@ int main(const f_array_length argc, const f_string argv[]) { return_code_data data = return_code_data_initialize; - /* if (f_pipe_exists()) { data.process_pipe = f_true; } - */ return return_code_main(argc, argv, &data); }