/usr/include/zebra/q_not.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 | *
* $Id: q_not.inc,v 1.1 1996/04/18 16:15:12 mclareni Exp $
*
* $Log: q_not.inc,v $
* Revision 1.1 1996/04/18 16:15:12 mclareni
* Incorporate changes from J.Zoll for version 3.77
*
*
*
#ifndef CERNLIB_ZEBRA_Q_NOT_INC
#define CERNLIB_ZEBRA_Q_NOT_INC
*
* q_not.inc
*
#if defined(CERNLIB_APOLLO)
* NOT is standard on APOLLO
#elif defined(CERNLIB_CDC)
NOT (IZW) = .NOT. IZW
#elif defined(CERNLIB_MSDOS)&&defined(CERNLIB_QF_F2C)
#elif defined(CERNLIB_QMIBMSI)
NOT (IZW) = LCOMPL (IZW)
#elif defined(CERNLIB_LNX)
#elif defined(CERNLIB_SUN)
* NOT is standard on SUN
#elif 1
#endif
#endif
|