]> Kevux Git Server - fll/commitdiff
Update: Use _di_f_type_d_ instead of _di_f_type_input_output_d_.
authorKevin Day <thekevinday@gmail.com>
Tue, 17 Jan 2023 04:21:16 +0000 (22:21 -0600)
committerKevin Day <thekevinday@gmail.com>
Tue, 17 Jan 2023 04:21:16 +0000 (22:21 -0600)
level_0/f_type/c/type.h

index 3e0d7c80b28f36bc3ad66a4169bfa8db5d0348fb..44aded4182279a6bbbde4b02f809c269297eca53 100644 (file)
@@ -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.