From 63ccb9c1fcb08bd53967b16bda04effe3389a856 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Thu, 8 Dec 2022 22:47:03 -0600 Subject: [PATCH] Update: Add mising _d in wrapping defines. --- level_0/f_type/c/type.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/level_0/f_type/c/type.h b/level_0/f_type/c/type.h index e03f3cc..0a6ff46 100644 --- a/level_0/f_type/c/type.h +++ b/level_0/f_type/c/type.h @@ -169,7 +169,7 @@ extern "C" { * For example, F_type_size_8_positive_d is 2^7, or 0 to 127, therefore the max size here is 127. * For example, F_type_size_8_unsigned_d is 2^8, or 0 to 255, therefore the max size here is 255. */ -#ifndef _di_f_type_sizes_ +#ifndef _di_f_type_sizes_d_ #define F_type_size_8_negative_d 0x7f #define F_type_size_8_positive_d 0x7e #define F_type_size_8_unsigned_d 0xfe @@ -221,7 +221,7 @@ extern "C" { #define F_type_size_max_128_positive_d F_type_size_max_64_positive_d #define F_type_size_max_128_unsigned_d F_type_size_max_64_unsigned_d #endif // _di_f_int_128_t_ -#endif // _di_f_type_sizes_ +#endif // _di_f_type_sizes_d_ /** * Custom data type to be used throughout the project to represent general numbers. @@ -283,7 +283,7 @@ extern "C" { * For most systems, there is no standard warning nor is there a standard debug. * Therefore, these will map to standard output. */ -#ifndef _di_f_type_input_output_ +#ifndef _di_f_type_input_output_d_ #define F_type_debug_d stdout #define F_type_error_d stderr #define F_type_input_d stdin @@ -295,7 +295,7 @@ extern "C" { #define F_type_descriptor_input_d STDIN_FILENO #define F_type_descriptor_output_d STDOUT_FILENO #define F_type_descriptor_warning_d STDOUT_FILENO -#endif // _di_f_type_input_output_ +#endif // _di_f_type_input_output_d_ /** * Defines a variable to be used by arrays. -- 1.8.3.1