void parameter on functions of arity 0

This commit is contained in:
2026-03-13 17:21:52 +01:00
parent 8026c33639
commit 5c0d02579b
13 changed files with 17 additions and 22 deletions

View File

@@ -7,7 +7,7 @@
#ifndef PS2_H
#define PS2_H
void keyboard_handler();
void keyboard_handler(void);
#define SHIFT_PRESSED_BIT 0b00000001
#define ALT_PRESSED_BIT 0b00000010

View File

@@ -13,7 +13,7 @@
void outb(int port, unsigned char data);
unsigned char inb(int port);
int serial_init();
int serial_init(void);
void skputs(const char* str);
void skputc(char c);

View File

@@ -9,6 +9,6 @@
void kputs(const char* str);
void _putchar(char character);
void term_init();
void term_init(void);
#endif