This file is indexed.

/usr/lib/klibc/include/klibc/seek.h is in libklibc-dev 2.0.3-0ubuntu1.

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
/*
 * klibc/seek.h
 *
 * SEEK constants - needed by stdio.h, fcntl.h, and unistd.h
 */

#ifndef _KLIBC_SEEK_H
#define _KLIBC_SEEK_H

#define SEEK_SET 0
#define SEEK_CUR 1
#define SEEK_END 2

#endif /* _KLIBC_SEEK_H */