More libc commenting
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
apio 2023-01-07 11:21:53 +01:00
parent 7e377ef712
commit b70bbc0ba6
Signed by: apio
GPG Key ID: B8A7D06E42258954
7 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,5 @@
/* bits/attrs.h: Macros wrapping GCC attributes for use in the standard library. */
#ifndef _BITS_ATTRS_H #ifndef _BITS_ATTRS_H
#define _BITS_ATTRS_H #define _BITS_ATTRS_H

View File

@ -1,3 +1,5 @@
/* bits/clockid.h: The clockid_t type and its supported values. */
#ifndef _BITS_CLOCKID_H #ifndef _BITS_CLOCKID_H
#define _BITS_CLOCKID_H #define _BITS_CLOCKID_H

View File

@ -1,3 +1,5 @@
/* bits/errno-return.h: Provides a convenient way of setting errno after a syscall. */
#ifndef _BITS_ERRNO_RETURN_H #ifndef _BITS_ERRNO_RETURN_H
#define _BITS_ERRNO_RETURN_H #define _BITS_ERRNO_RETURN_H

View File

@ -1,3 +1,5 @@
/* bits/timespec.h: Defines the timespec structure. */
#ifndef _BITS_TIMESPEC_H #ifndef _BITS_TIMESPEC_H
#define _BITS_TIMESPEC_H #define _BITS_TIMESPEC_H

View File

@ -1,6 +1,9 @@
/* sys/syscall.h: Defines syscall numbers. */
#ifndef _SYS_SYSCALL_H #ifndef _SYS_SYSCALL_H
#define _SYS_SYSCALL_H #define _SYS_SYSCALL_H
/* This header just forwards to luna/Syscall.h, which is used in the kernel as well. */
#include <luna/Syscall.h> #include <luna/Syscall.h>
#endif #endif

View File

@ -1,3 +1,5 @@
/* sys/types.h: System data types. */
#ifndef _SYS_TYPES_H #ifndef _SYS_TYPES_H
#define _SYS_TYPES_H #define _SYS_TYPES_H

View File

@ -1,3 +1,5 @@
/* time.h: Time management functions. */
#ifndef _TIME_H #ifndef _TIME_H
#define _TIME_H #define _TIME_H