diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-01-31 04:41:37 -0500 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-01-31 04:41:37 -0500 |
commit | b2e01f02bc9a575ae57a06060df5d807bcf46220 (patch) | |
tree | 64f29371fcb97f67ff9e3332409cb1aa64d38af9 /kernel/include/libk/kmalloc.h | |
parent | 7a0025ab97c42dfa350afbe4d545088c6e16a95a (diff) |
{physical_mm,virtual_mm,kmalloc}: C->C++
Diffstat (limited to 'kernel/include/libk/kmalloc.h')
-rw-r--r-- | kernel/include/libk/kmalloc.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/kernel/include/libk/kmalloc.h b/kernel/include/libk/kmalloc.h index e124c70..85e247a 100644 --- a/kernel/include/libk/kmalloc.h +++ b/kernel/include/libk/kmalloc.h @@ -21,10 +21,6 @@ #include <stdint.h> -#ifdef __cplusplus -extern "C" { -#endif - #define MIN_PAGES 4 typedef struct memory_chunk_t { @@ -36,8 +32,4 @@ typedef struct memory_chunk_t { void *kmalloc(uint32_t size); -#ifdef __cplusplus -} -#endif - #endif |