aboutsummaryrefslogtreecommitdiff
path: root/lib/stdlib.h
diff options
context:
space:
mode:
authoraqua <aqua@iserlohn-fortress.net>2022-12-11 21:42:29 +0200
committeraqua <aqua@iserlohn-fortress.net>2022-12-11 21:42:29 +0200
commitf398efa1ac52e967d9673a0efebd9a27f17d60bf (patch)
treeddf0460a1cf6f1ab8fd71de250e581f7f4e51b37 /lib/stdlib.h
parentMove symlink target to leaf makefiles (diff)
downloadkernel-f398efa1ac52e967d9673a0efebd9a27f17d60bf.tar.xz
Generate docs using doxygen instead of sphinx
Diffstat (limited to 'lib/stdlib.h')
-rw-r--r--lib/stdlib.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/stdlib.h b/lib/stdlib.h
index bd8474d..84d9b2d 100644
--- a/lib/stdlib.h
+++ b/lib/stdlib.h
@@ -2,6 +2,11 @@
#include <stddef.h>
+///@defgroup libk libk
+///@{
+///@defgroup stdlib stdlib
+///@{
+
/**
* Allocate size bytes and return a pointer to the allocated memory
*/
@@ -21,3 +26,6 @@ void *memset(void *s, int c, long unsigned n);
* Copy n bytes from memory area src to memory area dest. The memory areas must not overlap.
*/
void *memcpy(void *restrict dest, const void *restrict src, long unsigned n);
+
+///@}
+///@}