This file is indexed.

/usr/include/dparser/gramgram.h is in mcrl2 201210.1-1ubuntu1.

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
/*
  Copyright 2002-2004 John Plevyak, All Rights Reserved
*/
struct Production;
struct Rule;
struct Elem;

typedef struct ParseNode_User {
  struct 	Production *p;
  struct 	Rule *r;
  struct 	Elem *e;
  unsigned int 	kind;
} ParseNode_User;

#define D_ParseNode_User ParseNode_User

#define D_ParseNode_Globals struct Grammar