Browse Source

allow using unicode

Paul Eggert 23 years ago
parent
commit
4bfdfaa270
1 changed files with 7 additions and 2 deletions
  1. 7 2
      lib/print-copyr.c

+ 7 - 2
lib/print-copyr.c

@@ -21,11 +21,16 @@
 # include <config.h>
 #endif
 
-#include "unicodeio.h"
 #include "print-copyr.h"
-
 #include <stdio.h>
 
+#if ENABLE_NLS
+# include "unicodeio.h"
+#else
+# define unicode_to_mb(code, callback, error_callback, callback_arg) \
+    error_callback (code, callback_arg)
+#endif
+
 #define COPYRIGHT_SIGN 0x00A9
 
 /* Print "(C)".  */