This file is indexed.

/usr/include/freebsd/stdlib.h is in freebsd-glue 0.2.22.

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

#ifndef _STDLIB_H_
#define _STDLIB_H_

#include <sys/types.h>

__BEGIN_DECLS

u_int32_t arc4random (void);
void arc4random_stir (void);
void arc4random_buf (void *, size_t);

const char *getprogname(void);
void setprogname (const char *);
void *reallocf(void *ptr, size_t size);
void srandomdev (void);
long long strtonum (const char *nptr, long long minval, long long maxval, const char **errstr);
char *getbsize(int *, long *);

char	*cgetcap(char *, const char *, int);
int	 cgetclose(void);
int	 cgetent(char **, char **, const char *);
int	 cgetfirst(char **, char **);
int	 cgetmatch(const char *, const char *);
int	 cgetnext(char **, char **);
int	 cgetnum(char *, const char *, long *);
int	 cgetset(const char *);
int	 cgetstr(char *, const char *, char **);
int	 cgetustr(char *, const char *, char **);

__END_DECLS

#endif