blob: 498d3c63df334885db77c4beebab61f3e1dc87f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* This file is part of dvi2bitmap; see README for copyrights and licence */
#ifndef BYTE_HEADER_READ
#define BYTE_HEADER_READ 1
// I believe this to be the only machine-dependent bit, since in
// principle a byte could be different from an unsigned char on some
// odd platforms. We don't even have to worry about bytesex.
typedef unsigned char Byte;
#endif // #ifdef BYTE_HEADER_READ
|