This file is indexed.

/usr/lib/klibc/include/grp.h is in libklibc-dev 1.5.25-1ubuntu2.

This file is owned by root:root, with mode 0o664.

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
/*
 * grp.h
 */

#ifndef _GRP_H
#define _GRP_H

#include <klibc/extern.h>
#include <sys/types.h>

struct group {
	char *gr_name;
	char *gr_passwd;
	gid_t gr_gid;
	char **gr_mem;
};

__extern int setgroups(size_t, const gid_t *);
__extern struct group *getgrgid(gid_t);
__extern struct group *getgrnam(const char *);

#endif				/* _GRP_H */