Subversion Repositories HelenOS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /* Base constants. */
  2.  
  3. #ifndef _BASE_CONST_H
  4. #define _BASE_CONST_H
  5.  
  6. #define FALSE              0    /* used for turning integers into Booleans */
  7. #define TRUE           1
  8. #define OK         0
  9.  
  10. #endif /* _BASE_CONST_H */
  11.