28 lines
739 B
TOML
28 lines
739 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 pid_t:
|
|
# - sched.h
|
|
# - signal.h
|
|
# - spawn.h (TODO not present in relibc)
|
|
# - sys/msg.h (TODO not present in relibc)
|
|
# - sys/sem.h (TODO not present in relibc)
|
|
# - sys/shm.h (TODO not present in relibc)
|
|
# - sys/types.h (where it should be defined)
|
|
# - sys/wait.h
|
|
# - termios.h
|
|
# - time.h
|
|
# - unistd.h
|
|
# - utmpx.h (TODO not present in relibc)
|
|
sys_includes = []
|
|
include_guard = "_RELIBC_BITS_PID_T_H"
|
|
language = "C"
|
|
style = "type"
|
|
no_includes = true
|
|
cpp_compat = true
|
|
[export]
|
|
include = ["pid_t"]
|
|
[enum]
|
|
prefix_with_name = true
|