From 138445b275a465e00ecb4b4079b0c64a34c37326 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 cf53088..6a8898a 100644 --- a/level_0/f_type/c/type.h +++ b/level_0/f_type/c/type.h @@ -39,14 +39,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