view src/types.h @ 56:a5ca5cc4661c

fix use objects at linker
author anatofuz
date Thu, 06 Jun 2019 19:46:58 +0900
parents 83c23a36980d
children
line wrap: on
line source

typedef unsigned int   uint;
typedef unsigned short ushort;
typedef unsigned char  uchar;
typedef unsigned int uint32;
typedef unsigned short uint16;
typedef unsigned char uint8;

#ifndef NULL
#define NULL ((void*)0)
#endif