/usr/include/paw/pawfil.inc is in libpawlib2-dev 1:2.14.04.dfsg.2-7ubuntu1.
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: pawfil.inc,v 1.3 1996/09/13 15:35:19 couet Exp $
*
* $Log: pawfil.inc,v $
* Revision 1.3 1996/09/13 15:35:19 couet
* - OLD Qp remove
*
* Revision 1.2 1996/03/01 16:49:58 cernlib
* All includes had picked up a completely wrong #if defined(CERNLIB_UNIX), ie.
* the real commons/declarations were missing on non-unix.
*
* Revision 1.1.1.1 1996/03/01 11:38:49 mclareni
* Paw
*
*
#ifndef CERNLIB_PAW_PAWFIL_INC
#define CERNLIB_PAW_PAWFIL_INC
*
* pawfil.inc
*
#if (defined(CERNLIB_IBM))&&(!defined(CERNLIB_IBMMVS))
#include <paw/pawfil1.inc>
#endif
#if defined(CERNLIB_IBMMVS)
#include <paw/pawfil2.inc>
#endif
#if defined(CERNLIB_VAX)
#include <paw/pawfil3.inc>
#endif
#if (defined(CERNLIB_UNIX)||defined(CERNLIB_CRAY)||defined(CERNLIB_APOLLO))&&(!defined(CERNLIB_MSDOS))&&(!defined(CERNLIB_WINNT))
#include <paw/pawfil4.inc>
#endif
#if defined(CERNLIB_MSDOS)
#include <paw/pawfil5.inc>
#endif
#if defined(CERNLIB_WINNT)
#include <paw/pawfil6.inc>
#endif
#endif
|