This file is indexed.

/usr/include/freebsd/paths.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
#include_next <paths.h>

#ifndef _FREEBSD_PATHS_H_
#define	_FREEBSD_PATHS_H_

#include <sys/cdefs.h>

#define	_PATH_DEVZERO	"/dev/zero"
#define _PATH_ETC	"/etc"
#define	_PATH_SYSPATH	"/sbin:/usr/sbin"
#define _PATH_IFCONFIG	"/sbin/ifconfig"
#define _PATH_MOUNT	"/sbin/mount"
#define _PATH_UUCPLOCK	"/var/lock/"		/* as per FHS, section 5 */

#ifdef __FreeBSD_kernel__
#define _PATH_FWMEM		"/dev/fwmem"
#define	_PATH_UFSSUSPEND	"/dev/ufssuspend"
#define _PATH_GBDE		"/sbin/gbde"
#define _PATH_GELI		"/sbin/geli"
#define _PATH_MDCONFIG		"/sbin/mdconfig"
#endif

__BEGIN_DECLS
#ifdef __FreeBSD_kernel__
const char *getbootfile(void);
#endif
__END_DECLS

#endif