This file is indexed.

/usr/include/zebra/tzread1.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
*
* $Id: tzread1.inc,v 1.2 1996/04/18 16:15:29 mclareni Exp $
*
* $Log: tzread1.inc,v $
* Revision 1.2  1996/04/18 16:15:29  mclareni
* Incorporate changes from J.Zoll for version 3.77
*
* Revision 1.1.1.1  1996/03/06 10:46:56  mclareni
* Zebra
*
*
#ifndef CERNLIB_ZEBRA_TZREAD1_INC
#define CERNLIB_ZEBRA_TZREAD1_INC
*
*
* tzread1.inc
*
#if defined(CERNLIB_QMIBM)
      READ (LUNTQ,NUM=NCH,END=78) LINE
      NCH    = MIN (NCH,LGL)
      NCHORG = LNBLNK (LINE(1:NCH))
#elif defined(CERNLIB_QMIBMD)
      READ (LUNTQ,NUM=NCH,END=78) LINE
      NCH    = MIN (NCH,LGL)
      NCHORG = LNBLNK (LINE(1:NCH))
#elif defined(CERNLIB_QMVAX)
      READ (LUNTQ,8000,END=78) NCH,LINE(1:MIN(NCH,LGL))
      NCH    = MIN (NCH,LGL)
      NCHORG = LNBLNK (LINE(1:NCH))
 8000 FORMAT (Q,A)
#elif 1
      READ (LUNTQ,'(A)',END=78) LINE
      NCHORG = LENOCC (LINE)
#endif

#endif