From 6577920375ee85512a3cfbb099d4f9e7a910b29f Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Thu, 8 Dec 2022 22:11:45 -0600 Subject: [PATCH] Update: The _di_compiler_attributes_ should e _di_compiler_attributes_d_. --- level_0/f_type/c/type.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/level_0/f_type/c/type.h b/level_0/f_type/c/type.h index 4c07083..f0dba47 100644 --- a/level_0/f_type/c/type.h +++ b/level_0/f_type/c/type.h @@ -37,14 +37,14 @@ extern "C" { * - visibility_public: Visibility is public. * - weak: Designate symbol is weak rather than global. */ -#ifndef _di_compiler_attributes_ +#ifndef _di_compiler_attributes_d_ #define F_attribute_visibility_hidden_d __attribute__((visibility("hidden"))) #define F_attribute_visibility_internal_d __attribute__((visibility("internal"))) #define F_attribute_visibility_protected_d __attribute__((visibility("protected"))) #define F_attribute_visibility_public_d __attribute__((visibility("default"))) #define F_attribute_weak_d __attribute__((weak)) -#endif // _di_compiler_attributes_ +#endif // _di_compiler_attributes_d_ /** * A status intended to be used as the return value status of some function or operation. -- 1.8.3.1