Просмотр исходного кода

fix: tty.h not using extern "C"

greatbridf 2 лет назад
Родитель
Сommit
a9ffa8ad1a
1 измененных файлов с 8 добавлено и 0 удалено
  1. 8 0
      include/kernel/tty.h

+ 8 - 0
include/kernel/tty.h

@@ -3,6 +3,10 @@
 
 #define STRUCT_TTY_NAME_LEN (32)
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 struct tty;
 
 struct tty_operations
@@ -24,3 +28,7 @@ void tty_print(struct tty* p_tty, const char* str);
 
 int make_serial_tty(struct tty* p_tty, int id);
 int make_vga_tty(struct tty* p_tty);
+
+#ifdef __cplusplus
+}
+#endif