Unify libc header descriptions

This commit is contained in:
apio 2023-01-08 15:29:30 +01:00
parent 8de59138ef
commit a620b00b18
Signed by: apio
GPG Key ID: B8A7D06E42258954
5 changed files with 6 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* bits/errno-return.h: Provides a convenient way of setting errno after a syscall. */ /* bits/errno-return.h: 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,4 +1,4 @@
/* bits/timespec.h: Defines the timespec structure. */ /* bits/timespec.h: The timespec structure. */
#ifndef _BITS_TIMESPEC_H #ifndef _BITS_TIMESPEC_H
#define _BITS_TIMESPEC_H #define _BITS_TIMESPEC_H

View File

@ -1,4 +1,4 @@
/* ctype.h: Character handling functions. */ /* ctype.h: Character handling. */
#ifndef _CTYPE_H #ifndef _CTYPE_H
#define _CTYPE_H #define _CTYPE_H

View File

@ -1,9 +1,10 @@
/* sys/syscall.h: Defines syscall numbers. */ /* sys/syscall.h: Syscall constants. */
#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. */ /* This header just forwards to luna/Syscall.h, which is used in the kernel as well. */
#include <luna/Syscall.h> #include <luna/Syscall.h>
#undef enumerate_syscalls
#endif #endif

View File

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