This file is indexed.

/usr/include/freebsd/stdio.h is in freebsd-glue 0.2.17.

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
#include_next <stdio.h>

#ifndef _STDIO_H_
#define _STDIO_H_

#include_next <bsd/stdio.h>

/* FreeBSD <stdio.h> has a few ugly kludges to declare a copy of
   functions which actually belong to <unistd.h>. We do the same
   here.  */
#include <__want_lseek.h>

#include <sys/cdefs.h>

__BEGIN_DECLS
FILE *funopen (const void *cookie, int (*readfn)(void *, char *, int),
	       int (*writefn)(void *, const char *, int),
	       fpos_t (*seekfn)(void *, fpos_t, int), int (*closefn)(void *));
FILE *fropen (void *cookie, int (*readfn)(void *, char *, int));
FILE *fwopen (void *cookie, int (*writefn)(void *, const char *, int));
__END_DECLS

#endif