2011-12-11 03:45:04 +04:00
|
|
|
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
|
|
|
*/
|
2011-02-22 08:51:06 +03:00
|
|
|
#ifndef TYPES_H
|
|
|
|
#define TYPES_H
|
|
|
|
|
|
|
|
/* Types */
|
|
|
|
|
|
|
|
#define NULL ((void *)0UL)
|
|
|
|
|
2014-02-27 09:10:56 +04:00
|
|
|
#include <stdint.h>
|
2011-02-22 08:51:06 +03:00
|
|
|
|
2014-02-27 09:10:56 +04:00
|
|
|
typedef unsigned long size_t;
|
2011-02-22 08:51:06 +03:00
|
|
|
#define CHAR_BIT 8
|
|
|
|
|
|
|
|
#endif
|