summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvipdfm-x/numbers.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/dvipdfm-x/numbers.c')
-rw-r--r--Build/source/texk/dvipdfm-x/numbers.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/Build/source/texk/dvipdfm-x/numbers.c b/Build/source/texk/dvipdfm-x/numbers.c
index dd616c66ebc..fcad7f7536c 100644
--- a/Build/source/texk/dvipdfm-x/numbers.c
+++ b/Build/source/texk/dvipdfm-x/numbers.c
@@ -1,6 +1,6 @@
/* This is dvipdfmx, an eXtended version of dvipdfm by Mark A. Wicks.
- Copyright (C) 2002-2016 by Jin-Hwan Cho and Shunsaku Hirata,
+ Copyright (C) 2002-2018 by Jin-Hwan Cho and Shunsaku Hirata,
the dvipdfmx project team.
Copyright (C) 1998, 1999 by Mark A. Wicks <mwicks@kettering.edu>
@@ -84,16 +84,6 @@ unsigned int get_unsigned_triple(FILE *file)
return triple;
}
-#ifndef WITHOUT_ASCII_PTEX
-unsigned int get_unsigned_triple_kanji(FILE *file)
-{
- unsigned int triple = get_unsigned_byte(file);
- triple = (triple << 8) | get_unsigned_byte(file);
- triple = triple | (get_unsigned_byte(file)<<16);
- return triple;
-}
-#endif
-
signed int get_signed_triple(FILE *file)
{
int i;
@@ -179,4 +169,3 @@ int32_t sqxfw (int32_t sq, fixword fw)
result += j << 28;
return (sign > 0) ? result : -result;
}
-