aboutsummaryrefslogtreecommitdiff
path: root/lib/stdlib.h
diff options
context:
space:
mode:
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);
+
+///@}
+///@}