summaryrefslogtreecommitdiff
path: root/sys/src/cmd/postscript/common/rune.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/src/cmd/postscript/common/rune.h')
-rw-r--r--sys/src/cmd/postscript/common/rune.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/sys/src/cmd/postscript/common/rune.h b/sys/src/cmd/postscript/common/rune.h
deleted file mode 100644
index 84301a8ea..000000000
--- a/sys/src/cmd/postscript/common/rune.h
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- *
- * Rune declarations - for supporting UTF encoding.
- *
- */
-
-#define RUNELIB 1
-
-#ifdef RUNELIB
-typedef unsigned short Rune;
-
-enum
-{
- UTFmax = 3, /* maximum bytes per rune */
- Runesync = 0x80, /* cannot represent part of a utf sequence (<) */
- Runeself = 0x80, /* rune and utf sequences are the same (<) */
- Runeerror = 0xFFFD, /* decoding error in utf */
- Runemax = 0xFFFF, /* 16 bit rune */
-};
-#endif