24 lines
669 B
TOML
24 lines
669 B
TOML
# POSIX header spec: https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/sys_ipc.h.html
|
|
#
|
|
# Spec quotations relating to includes:
|
|
# - "The <sys/ipc.h> header shall define the uid_t, gid_t, mode_t, and key_t types as described in <sys/types.h>."
|
|
include_guard = "_RELIBC_SYS_IPC_H"
|
|
after_includes = """
|
|
#include <bits/gid-t.h> // for gid_t from sys/types.h
|
|
#include <bits/uid-t.h> // for uid_t from sys/types.h
|
|
#include <bits/key-t.h> // for key_t from sys/types.h
|
|
#include <bits/mode-t.h> // for mode_t from sys/types.h
|
|
"""
|
|
language = "C"
|
|
style = "Tag"
|
|
no_includes = true
|
|
cpp_compat = true
|
|
|
|
[enum]
|
|
prefix_with_name = true
|
|
|
|
[export]
|
|
include = [
|
|
"ipc_perm",
|
|
]
|