This file is indexed.

/usr/include/zebra/q_sbit1.inc is in libpacklib1-dev 20061220+dfsg3-4.2.

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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
*
* $Id: q_sbit1.inc,v 1.2 2006/09/15 09:35:34 mclareni Exp $
*
* $Log: q_sbit1.inc,v $
* Revision 1.2  2006/09/15 09:35:34  mclareni
* Submitted mods for gcc4/gfortran and MacOSX, corrected to work also on slc4 with gcc3.4 and 4.1
*
* Revision 1.1  1996/04/18 16:15:24  mclareni
* Incorporate changes from J.Zoll for version 3.77
*
*
*
#ifndef CERNLIB_ZEBRA_Q_SBIT1_INC
#define CERNLIB_ZEBRA_Q_SBIT1_INC
*
*
* q_sbit1.inc
*

#if defined(CERNLIB_APOLLO)
      MSBIT1 (IZW,IZP)   = OR  (IZW,     LSHFT(1,IZP-1)  )

#elif defined(CERNLIB_CDC)
      MSBIT1 (IZW,IZP)   = IZW .OR.       SHIFT(MASK(1),IZP)

#elif defined(CERNLIB_CRAY)
      MSBIT1 (IZW,IZP)       =  IZW .OR.  SHIFT(MASK(1), IZP)

#elif (defined(CERNLIB_CONVEX))&&(!defined(CERNLIB_DOUBLE))
      MSBIT1 (IZW,IZP)   = IBSET (IZW,IZP-1)

#elif (defined(CERNLIB_CONVEX))&&(defined(CERNLIB_DOUBLE))
      MSBIT1 (IZW,IZP)   = IBSET (IZW,IZP-1)

#elif defined(CERNLIB_MSDOS)

#if defined(CERNLIB_QF_NDP)
      MSBIT1 (IZZW,IZZP)   = IOR  (IZZW,     ISHFT(1,IZZP-1)  )
#elif defined(CERNLIB_QF_F2C)
      MSBIT1 (IZW,IZP)   = OR  (IZW,     LSHIFT(1,IZP-1)  )
#endif

#elif defined(CERNLIB_QF_SIEM)
      MSBIT1 (IZW,IZP)   = LOR  (IZW,        SHFTL(1,IZP-1)  )

#elif defined(CERNLIB_LINUX) && !defined(CERNLIB_GFORTRAN)
      MSBIT1 (IZW,IZP)   = OR  (IZW,     LSHIFT(1,IZP-1))

#elif defined(CERNLIB_PDP)
      MSBIT1 (IZW,IZP)   = IOR  (IZW,     ISHFT(1,IZP-1) )

#elif defined(CERNLIB_SUN)
      MSBIT1 (IZW,IZP)   = OR  (IZW,     LSHIFT(1,IZP-1)  )

#elif defined(CERNLIB_VAXVMS)

#elif defined(CERNLIB_QMVDS)
      MSBIT1 (IZW,IZP)   = OR  (IZW,     LSHFT(1,IZP-1)  )

#elif 1
      MSBIT1 (IZW,IZP)   = IOR  (IZW,     ISHFT(1,IZP-1)  )
#endif

#endif