/usr/include/paw/ntuple/c_pcmask.h is in libpawlib2-dev 1:2.14.04.dfsg.2-9.
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 | /*
* pcmask.h --
* Map the /PCMASK/ and /PCMAS2/ common blocks
*
* Original: 11-Nov-1994 11:26
*
* Author: Maarten Ballintijn <Maarten.Ballintijn@cern.ch>
*
* $Id: c_pcmask.h,v 1.3 1999/06/28 15:08:34 couet Exp $
*
* $Log: c_pcmask.h,v $
* Revision 1.3 1999/06/28 15:08:34 couet
* - use now cfortran.h in $CVSCOSRC
*
* Revision 1.2 1996/04/23 18:37:51 maartenb
* - Add RCS keywords
*
*
*/
#ifndef CERN_PCMASK
#define CERN_PCMASK
#include <cfortran.h>
#define MASDIM 9
typedef struct {
int lmask;
int lmbuf;
int lm;
int imsk[MASDIM];
int imrd;
int mbit[MASDIM];
int mbitd;
int numd;
int nbuffd;
int nbuffr;
int nbuff[MASDIM];
int idec;
int lrec;
int nbmask;
} pcmask_def;
#define PCMASK COMMON_BLOCK(PCMASK,pcmask)
COMMON_BLOCK_DEF(pcmask_def,PCMASK);
typedef struct {
char chmask[20][32];
} pcmas2_def;
#define PCMAS2 COMMON_BLOCK(PCMAS2,pcmas2)
COMMON_BLOCK_DEF(pcmas2_def,PCMAS2);
#endif /* CERN_PCMASK */
|