diff options
author | Jérémy Zurcher <jeremy.zurcher@heraeus.com> | 2015-11-02 11:15:48 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy.zurcher@heraeus.com> | 2015-11-02 11:15:48 +0100 |
commit | d968266a3be79c449f62fdf6f19b8f8b5344eece (patch) | |
tree | 75c3596106e4d7b92a7223adb22f4f6cb5f5f928 /common | |
download | os_skeleton-d968266a3be79c449f62fdf6f19b8f8b5344eece.zip os_skeleton-d968266a3be79c449f62fdf6f19b8f8b5344eece.tar.gz |
Initial commit
Diffstat (limited to 'common')
-rw-r--r-- | common/types.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/common/types.h b/common/types.h new file mode 100644 index 0000000..4c911ed --- /dev/null +++ b/common/types.h @@ -0,0 +1,15 @@ +#ifndef _TYPES_H_ +#define _TYPES_H_ + +#include <stdint.h> +#include <stdbool.h> + +typedef unsigned char uchar; +typedef unsigned short ushort; +typedef unsigned int uint; +typedef unsigned long ulong; + +#define NULL 0 + +#endif + |