'gettext' declaration checked, no retyping ('int->void *' may not be possible)
[mdsms.git] / acconfig.h
index 890db9d..b7e0cf5 100644 (file)
 /* Disable runtime assertion checks. */
 #undef NDEBUG
 
-/* Provide stub for MAX-function if needed. */
-#undef HAVE_MAX
-#ifndef HAVE_MAX
-#define MAX(a,b) ((a)>(b)?(a):(b))
-#endif
-
-/* Provide stub for MIN-function if needed. */
-#undef HAVE_MIN
-#ifndef HAVE_MIN
-#define MIN(a,b) ((a)<(b)?(a):(b))
-#endif
-
 /* LINE_MAX from <limits.h>, provide default if not defined. */
 #undef HAVE_LINE_MAX
 #undef LINE_MAX
 #undef HAVE_CBAUDEX
 #undef CBAUDEX
 
+/* CRTSCTS define, may be missing. */
+#undef HAVE_CRTSCTS
+#undef CRTSCTS
+
 /* FD_SETSIZE define, may be missing. */
 #undef HAVE_FD_SETSIZE
 
@@ -212,9 +204,10 @@ extern char *sys_errlist[];
 #ifdef HAVE_LIBINTL_H
 #    include <libintl.h>
 #endif /* HAVE_LIBINTL_H */
-#    define _(String) gettext (String)
+/* 'gettext()' may not be declared here and it will default to return 'int'! */
+#    define _(String) ((const char *)gettext (String))
 #    ifdef gettext_noop
-#        define N_(String) gettext_noop (String)
+#        define N_(String) ((const char *)gettext_noop (String))
 #    else
 #        define N_(String) (String)
 #    endif