dxx-rebirth/misc/compare.c
md2211 d393f32eed * Removed executable flag on most files
* Reverted value of SOUND_MAX_VOLUME
2007-09-21 19:06:05 +00:00

15 lines
303 B
C

//added 03/05/99 Matt Mueller - comparison functions.. used in checking
//versions without need to duplicate a function or have kludgy code
#include "compare.h"
int32_t int32_greaterorequal(int32_t a,int32_t b)
{
return (a>=b);
}
int32_t int32_lessthan(int32_t a,int32_t b)
{
return (a<b);
}