This file is indexed.

/usr/include/styx/prs_dfn.h is in styx-dev 2.0.1-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
/*----------------------------------------------------------------------------*/
/*                                                                            */
/* [prs_dfn.h]      LALR(1) parser/generator definitions                      */
/*                                                                            */
/* Copyright (c) 1993 by Doelle, Manns                                        */
/*----------------------------------------------------------------------------*/

#ifndef PRS_DFN_INCL
#define PRS_DFN_INCL

#include "standard.h"
#include "cfg_dfn.h"

AbstractType(PLR_Tab); /* Abstract parse table type */

#define PLR_TOK_Other "_other_" /* parser representation of SCN_TOK_Other */

#define PLR_PRD_DFT  0 /* default   production  */
#define PLR_PRD_REC  1 /* recursive production  */
#define PLR_PRD_GRP  2 /* group     production  */
#define PLR_PRD_NON  3 /* ... end of definition */

#endif //_INCL