/usr/include/zebra/rzcycle.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 | *
* $Id: rzcycle.inc,v 1.1.1.1 1996/03/06 10:46:55 mclareni Exp $
*
* $Log: rzcycle.inc,v $
* Revision 1.1.1.1 1996/03/06 10:46:55 mclareni
* Zebra
*
*
#ifndef CERNLIB_ZEBRA_RZCYCLE_INC
#define CERNLIB_ZEBRA_RZCYCLE_INC
*
*
* rzcycle.inc
*
*
* Pointers to cycle content
*
* KLCYCL : length of cycle block (4,7)
* KPPCYC : pointer to previous cycle
* KFRCYC : first record number
* KSRCYC : secord record number
* KFLCYC : creation date/time and other stuff
* KORCYC : offset in first record to data
* KCNCYC : cycle number
* KNWCYC : number of words in d/s
* KKYCYC : key number to which this cycle belongs (only for version 1)
* KVSCYC : version of RZ cycles structure (0, 1)
*
INTEGER KLCYCL, KPPCYC, KFRCYC, KSRCYC, KFLCYC, KORCYC,
+ KCNCYC, KNWCYC, KKYCYC, KVSCYC
COMMON/RZCYCLE/KLCYCL, KPPCYC, KFRCYC, KSRCYC, KFLCYC, KORCYC,
+ KCNCYC, KNWCYC, KKYCYC, KVSCYC
#endif
|