#ifndef IPX_UTILS_NLS_H #define IPX_UTILS_NLS_H #ifdef HAVE_CONFIG_H # include "config.h" #endif #if defined(HAVE_LIBINTL_H) && defined(HAVE_GETTEXT) # include #else # define gettext(String) (String) #endif #ifndef _ # define _(String) gettext(String) #endif #ifndef N_ # define N_(String) (String) #endif #endif /* IPX_UTILS_NLS_H */