#ifndef MYINTL_H #define MYINTL_H #ifdef HAVE_CONFIG_H # include #endif #ifdef ENABLE_NLS #include #define _(x) (gettext(x)) #else #define _(x) (x) #endif #define N_(x) (x) #endif /* MYINTL_H */