From: Kevin Day Date: Fri, 9 Dec 2022 04:11:45 +0000 (-0600) Subject: Update: The _di_compiler_attributes_ should e _di_compiler_attributes_d_. X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=138445b275a465e00ecb4b4079b0c64a34c37326;p=fll Update: The _di_compiler_attributes_ should e _di_compiler_attributes_d_. --- 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.