bits.h 381 B

123456789101112131415161718
  1. /* $Id$ */
  2. /*
  3. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  4. * See the copyright notice in the ACK home directory, in the file "Copyright".
  5. */
  6. #include "dobits.h"
  7. #ifdef DOBITS
  8. #define bit0 0x01
  9. #define bit1 0x02
  10. #define bit2 0x04
  11. #define bit3 0x08
  12. #define bit4 0x10
  13. #define bit5 0x20
  14. #define bit6 0x40
  15. #define bit7 0x80
  16. extern char bits[];
  17. #endif