CelestiaContent/src/basictypes.h

25 lines
639 B
C

// basictypes.h
//
// Copyright (C) 2001, Chris Laurel <claurel@shatters.net>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
#ifndef _BASICTYPES_H_
#define _BASICTYPES_H_
typedef unsigned int uint;
// Fixed size types
typedef int int32;
typedef unsigned int uint32;
typedef short int16;
typedef unsigned short uint16;
typedef char int8;
typedef unsigned char uint8;
#endif // _BASICTYPES_H_