Files
SAPFOR/dvm/tools/pppa/branches/dvm4.07/src/bool.h

8 lines
89 B
C
Raw Normal View History

2023-09-15 08:30:58 +03:00
#ifndef _BOOL_H
#define _BOOL_H
#define FALSE 0
#define TRUE 1
typedef int BOOL;
#endif