mirror of
https://github.com/sigmasternchen/chaOS
synced 2025-03-15 13:48:55 +00:00
12 lines
141 B
C
12 lines
141 B
C
#ifndef TYPES_H
|
|
#define TYPES_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#define bool uint8_t
|
|
#define false 0
|
|
#define true !false
|
|
|
|
#define tiny uint8_t
|
|
|
|
#endif
|