/usr/include/freebsd/sys/_stdint.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 | #if defined(__FreeBSD_kernel__) && !defined(__FREEBSD_GLUE_USE_EMBEDDED_HEADERS)
#include_next <sys/_stdint.h>
#else
#ifndef _SYS__STDINT_H_
#define _SYS__STDINT_H_
#include <stdint.h>
#endif /* !_SYS__STDINT_H_ */
#endif /* __FreeBSD_kernel__ */
|