This file is indexed.

/usr/include/bobcat/gs is in libbobcat-dev 4.08.02-2build1.

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
#ifndef INCLUDED_GS_
#define INCLUDED_GS_

namespace FBB
{

struct GS__
{
    enum Type
    {
        BLOCK_DEVICE        =  0060000,
        CHARACTER_DEVICE    =  0020000,   
        DIRECTORY           =  0040000,
        FIFO                =  0010000,
        REGULAR_FILE        =  0100000,
        SOCKET              =  0140000,
        SYMBOLIC_LINK       =  0120000,
        ANY                 =  
                                BLOCK_DEVICE  | CHARACTER_DEVICE | DIRECTORY |
                                FIFO          | REGULAR_FILE     | SOCKET    |
                                SYMBOLIC_LINK
    };
};

inline GS__::Type operator|(GS__::Type lhs, GS__::Type rhs)
{
    return static_cast<GS__::Type>(
                        static_cast<int>(lhs) | static_cast<int>(rhs)
            );
}

}   // namespace FBB
        
#endif