9 lines
120 B
C
9 lines
120 B
C
|
#ifndef CALC_H
|
||
|
#define CALC_H
|
||
|
|
||
|
typedef unsigned char bool;
|
||
|
typedef unsigned char u8;
|
||
|
typedef unsigned int uint;
|
||
|
|
||
|
#endif
|