/usr/include/ffread/ffmach.inc is in libpacklib1-dev 20061220+dfsg3-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | *
* $Id: ffmach.inc,v 1.1.1.1 1996/03/08 11:50:40 mclareni Exp $
*
* $Log: ffmach.inc,v $
* Revision 1.1.1.1 1996/03/08 11:50:40 mclareni
* Ffread
*
*
#ifndef CERNLIB_FFREAD_FFMACH_INC
#define CERNLIB_FFREAD_FFMACH_INC
*
*
* ffmach.inc
*
#if defined(CERNLIB_DOUBLE)
PARAMETER (NCHWD = 4,
* NBITCH = 8,
* NBITWD = 32,
* IQANIL = -77)
#endif
#if (defined(CERNLIB_SINGLE))&&(!defined(CERNLIB_CDC))
PARAMETER (NCHWD = 8,
* NBITCH = 8,
* NBITWD = 64,
* IQANIL = -77)
#endif
#if defined(CERNLIB_CDC)
PARAMETER (NCHWD = 10,
* NBITCH = 6,
* NBITWD = 60,
* IQANIL = -77)
#endif
#if defined(CERNLIB_UNIVAC)
PARAMETER (NCHWD = 4,
* NBITCH = 9,
* NBITWD = 36,
* IQANIL = -77)
#endif
C
C NCHWD - # of characters per word
C NBITCH - # of bits per character
C NBITWD - # of bits per word
C IQANIL - # weard address for the user routine
C
#endif
|