/usr/include/zebra/q_and.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 | *
* $Id: q_and.inc,v 1.2 2006/09/15 09:35:33 mclareni Exp $
*
* $Log: q_and.inc,v $
* Revision 1.2 2006/09/15 09:35:33 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:05 mclareni
* Incorporate changes from J.Zoll for version 3.77
*
*
*
#ifndef CERNLIB_ZEBRA_Q_AND_INC
#define CERNLIB_ZEBRA_Q_AND_INC
*
* q_and.inc
*
#if defined(CERNLIB_APOLLO)
IAND (IZV,IZW) = AND (IZV, IZW)
#elif defined(CERNLIB_CDC)
IAND (IZV,IZW) = IZV .AND. IZW
#elif defined(CERNLIB_MSDOS)&&defined(CERNLIB_QF_F2C)
IAND(IZV,IZW) = AND(IZV,IZW)
#elif defined(CERNLIB_QMIBMSI)
IAND (IZV,IZW) = LAND (IZV, IZW)
#elif defined(CERNLIB_LNX) && !defined(CERNLIB_GFORTRAN)
IAND(IZV,IZW) = AND(IZV,IZW)
#elif defined(CERNLIB_SUN)
IAND (IZV,IZW) = AND (IZV, IZW)
#elif 1
#endif
#endif
|