Initial version
This commit is contained in:
commit
6f405265a5
102 changed files with 14486 additions and 0 deletions
14
code/threads/bool.h
Normal file
14
code/threads/bool.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
// 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
|
Loading…
Add table
Add a link
Reference in a new issue