22 lines
523 B
TOML
22 lines
523 B
TOML
# POSIX header spec: https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/sys_types.h.html
|
|
#
|
|
# This type is split out to prevent importing all of sys/types.h into other headers.
|
|
#
|
|
# POSIX headers that require time_t:
|
|
# - sched.h
|
|
# - sys/select.h
|
|
# - sys/stat.h
|
|
# - sys/time.h
|
|
# - sys/types.h (where it should be defined)
|
|
# - time.h
|
|
sys_includes = []
|
|
include_guard = "_RELIBC_BITS_TIME_T_H"
|
|
language = "C"
|
|
style = "type"
|
|
no_includes = true
|
|
cpp_compat = true
|
|
[export]
|
|
include = ["time_t"]
|
|
[enum]
|
|
prefix_with_name = true
|