This file is indexed.

/usr/include/pixrect/traprop.h is in xviewg-dev 3.2p1.4-28.1.

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
/*	@(#)traprop.h 1.7 88/02/08 SMI	*/

/*
 * Copyright (c) 1984 by Sun Microsystems, Inc.
 */

#ifndef traprop_DEFINED
#define traprop_DEFINED

struct pr_chain {
	struct pr_chain	*next;
	struct pr_size	size;		/* size of bounding box */
	int		*bits;		/* chain-encoding bits */
};

struct pr_fall {
	struct pr_pos	pos;		/* position of top of fall */
	struct pr_chain	*chain;		/* trajectory of fall */
};

struct pr_trap {
	struct pr_fall	*left, *right;	/* falls = left+right boundaries */
	int y0, y1;			/* top+bottom boundaries */
};

#endif /* traprop_DEFINED */