Files
Limine/common/drivers/serial.h
cospplredman ba5c0004e6 fixed header guard names
made them more standard compliant
2024-03-20 03:06:55 +01:00

14 lines
163 B
C

#ifndef DRIVERS__SERIAL_H__
#define DRIVERS__SERIAL_H__
#if defined (BIOS)
#include <stdint.h>
void serial_out(uint8_t b);
int serial_in(void);
#endif
#endif