#ifndef _ARCH_MSG_DOT_H #define _ARCH_MSG_DOT_H #include /* Msg typedef */ #ifndef __lint #define MSG_SGS_LOCAL_ARRAY __sgs_msg_libconv_arch extern const char __sgs_msg_libconv_arch[]; #define MSG_ORIG_STRTAB(_x, _s) &_s[_x] #define MSG_ORIG(x) MSG_ORIG_STRTAB(x, __sgs_msg_libconv_arch) extern const char * _sgs_msg_libconv_arch(Msg); #define MSG_INTL(x) _sgs_msg_libconv_arch(x) #define MSG_ARCH_SPARCV9 1 #define MSG_ARCH_SPARCV9_SIZE 7 #define MSG_ARCH_AMD64 9 #define MSG_ARCH_AMD64_SIZE 5 #define MSG_LD_NOEXEC64 15 #define MSG_LD_NOEXEC64_SIZE 12 #define MSG_STR_SLASH 28 #define MSG_STR_SLASH_SIZE 1 #else /* __lint */ extern const char * _sgs_msg_libconv_arch(Msg); #ifndef MSG_SGS_LOCAL_ARRAY #define MSG_SGS_LOCAL_ARRAY "" #endif extern const char __sgs_msg_libconv_arch[]; #define MSG_ORIG_STRTAB(_x, _s) _x #define MSG_ORIG(x) x #define MSG_INTL(x) x #ifndef LINTSUP_SUPPRESS_STRINGS #define MSG_ARCH_SPARCV9 "sparcv9" #define MSG_ARCH_SPARCV9_SIZE 7 #define MSG_ARCH_AMD64 "amd64" #define MSG_ARCH_AMD64_SIZE 5 #define MSG_LD_NOEXEC64 "LD_NOEXEC_64" #define MSG_LD_NOEXEC64_SIZE 12 #define MSG_STR_SLASH "/" #define MSG_STR_SLASH_SIZE 1 #endif /* LINTSUP_SUPPRESS_STRINGS */ #endif /* __lint */ #endif