/usr/include/paw/ntuple/c_hcflag.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 | /*
* hcflag.h --
* Map the /HCFLAG/ common block
*
* Original: 7-Nov-1994 16:20
*
* Author: Maarten Ballintijn <Maarten.Ballintijn@cern.ch>
*
* $Id: c_hcflag.h,v 1.3 1999/06/28 15:08:25 couet Exp $
*
* $Log: c_hcflag.h,v $
* Revision 1.3 1999/06/28 15:08:25 couet
* - use now cfortran.h in $CVSCOSRC
*
* Revision 1.2 1996/04/23 18:37:44 maartenb
* - Add RCS keywords
*
*
*/
#ifndef CERN_HCFLAG
#define CERN_HCFLAG
#include <cfortran.h>
typedef struct {
int id;
int idbadd;
int lid;
int idlast;
int idhold;
int nbit;
int nbitch;
int nchar;
int nrhist;
int ierr;
int nv;
} hcflag_def;
#define HCFLAG COMMON_BLOCK(HCFLAG,hcflag)
COMMON_BLOCK_DEF(hcflag_def,HCFLAG);
#endif /* CERN_HCFLAG */
|