1 2 #ifndef _LIBINTL_H_ 3 #define _LIBINTL_H_ 4 5 #include <sys/cdefs.h> 6 #include <stdio.h> 7 8 #define textdomain(domain) 0 9 #define gettext(...) (__VA_ARGS__) 10 #define dgettext(domain, ...) (__VA_ARGS__) 11 12 #endif /* !_SOLARIS_H_ */ 13
1 2 #ifndef _LIBINTL_H_ 3 #define _LIBINTL_H_ 4 5 #include <sys/cdefs.h> 6 #include <stdio.h> 7 8 #define textdomain(domain) 0 9 #define gettext(...) (__VA_ARGS__) 10 #define dgettext(domain, ...) (__VA_ARGS__) 11 12 #endif /* !_SOLARIS_H_ */ 13