From: Kevin Day Date: Tue, 17 Jan 2023 04:21:16 +0000 (-0600) Subject: Update: Use _di_f_type_d_ instead of _di_f_type_input_output_d_. X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=4a764a0089a26b5bdee2d1b7a9857e2228845a77;p=fll Update: Use _di_f_type_d_ instead of _di_f_type_input_output_d_. --- diff --git a/level_0/f_type/c/type.h b/level_0/f_type/c/type.h index 3e0d7c8..44aded4 100644 --- a/level_0/f_type/c/type.h +++ b/level_0/f_type/c/type.h @@ -280,7 +280,7 @@ extern "C" { #endif // _en_f_type_number_128_t_ /** - * Standard Input/Output types. + * Standard file types defines. * * F_type_*_d: * - error: Standard error stream. @@ -292,7 +292,7 @@ extern "C" { * - input: Standard input file descriptor. * - output: Standard output file descriptor. */ -#ifndef _di_f_type_input_output_d_ +#ifndef _di_f_type_d_ #define F_type_error_d stderr #define F_type_input_d stdin #define F_type_output_d stdout @@ -300,7 +300,7 @@ extern "C" { #define F_type_descriptor_error_d STDERR_FILENO #define F_type_descriptor_input_d STDIN_FILENO #define F_type_descriptor_output_d STDOUT_FILENO -#endif // _di_f_type_input_output_d_ +#endif // _di_f_type_d_ /** * Defines a variable to be used by arrays.