16 lines
199 B
C
Raw Normal View History

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