r3/include/define.h

17 lines
234 B
C
Raw Normal View History

2014-05-16 00:33:59 -04:00
/*
* define.h
* Copyright (C) 2014 c9s <c9s@c9smba.local>
*
* Distributed under terms of the MIT license.
*/
#ifndef DEFINE_H
#define DEFINE_H
typedef unsigned char bool;
#define FALSE 0
#define TRUE 1
#endif /* !DEFINE_H */