14 lines
285 B
C
14 lines
285 B
C
// Defining TRUE and FALSE is usually a Bad Idea,
|
|
// because you will probably be inconsistent with anyone
|
|
// else who had the same clever idea.
|
|
// Therefore: DON'T USE THIS FILE.
|
|
|
|
#ifndef _bool_h
|
|
#define _bool_h 1
|
|
|
|
#include <stdbool.h>
|
|
|
|
#define TRUE true
|
|
#define FALSE false
|
|
|
|
#endif
|