/usr/include/paw/ntuple/c_pccsel.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 | /*
 *  c_pccsel.h  --
 *	Map the /PCCSEL/ and /PCCSE2/ commonblocks
 *
 *  Original: 15-May-1996 11:06
 *
 *  Author:   Maarten Ballintijn <Maarten.Ballintijn@cern.ch>
 *
 *  $Id: c_pccsel.h,v 1.2 1999/06/28 15:08:33 couet Exp $
 *
 *  $Log: c_pccsel.h,v $
 *  Revision 1.2  1999/06/28 15:08:33  couet
 *  - use now cfortran.h in $CVSCOSRC
 *
 *  Revision 1.1  1996/05/15 13:11:37  maartenb
 *  - Fix the CSELECT command.
 *
 *
 *
 */
#ifndef CERN_C_PCCSEL
#define CERN_C_PCCSEL
#include	<cfortran.h>
typedef struct {
	int	ioptcs[5];
	int	csize;
} pccsel_def;
#define	ioptcr	ioptcs[0]
#define	ioptcb	ioptcs[1]
#define	ioptcm	ioptcs[2]
#define	ioptcc	ioptcs[3]
#define	ioptcn	ioptcs[4]
#define	PCCSEL	COMMON_BLOCK(PCCSEL,pccsel)
COMMON_BLOCK_DEF(pccsel_def,PCCSEL);
typedef struct {
	char	chcsel[80];
	char	csopt[8];
} pccse2_def;
#define	PCCSE2	COMMON_BLOCK(PCCSE2,pccse2)
COMMON_BLOCK_DEF(pccse2_def,PCCSE2);
#endif	/*	CERN_C_PCCSEL	*/
 |