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-Tag: 0.6.2~34 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=6577920375ee85512a3cfbb099d4f9e7a910b29f;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 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.