aboutsummaryrefslogtreecommitdiff
path: root/kernel/include
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/include')
-rw-r--r--kernel/include/kernel/halt.h8
-rw-r--r--kernel/include/kernel/io.h8
2 files changed, 0 insertions, 16 deletions
diff --git a/kernel/include/kernel/halt.h b/kernel/include/kernel/halt.h
index 60ac008..db511cf 100644
--- a/kernel/include/kernel/halt.h
+++ b/kernel/include/kernel/halt.h
@@ -19,15 +19,7 @@
#ifndef __kernel_halt_h
#define __kernel_halt_h
-#ifdef __cplusplus
-extern "C" {
-#endif
-
void halt(void);
void exit(void);
-#ifdef __cplusplus
-}
-#endif
-
#endif
diff --git a/kernel/include/kernel/io.h b/kernel/include/kernel/io.h
index 5cef4f5..f58bd2d 100644
--- a/kernel/include/kernel/io.h
+++ b/kernel/include/kernel/io.h
@@ -21,15 +21,7 @@
#include <stdint.h>
-#ifdef __cplusplus
-extern "C" {
-#endif
-
uint8_t inb(uint16_t port);
void outb(uint16_t port, uint8_t val);
-#ifdef __cplusplus
-}
-#endif
-
#endif