aboutsummaryrefslogtreecommitdiff
path: root/bool.h
blob: 4df8b5310da316e06066d44b6b65d7a99a81454c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef BOOL_H
#define BOOL_H

 #include <stdbool.h>

 #ifndef TRUE
   #define TRUE true
 #endif

 #ifndef FALSE
  #define FALSE false
 #endif

#endif