22 lines
334 B
C
22 lines
334 B
C
/* $Id$ */
|
|
/* Copyright (c) 2018 Pierre Pronchery <khorben@defora.org> */
|
|
/* This file is part of DeforaOS uKernel */
|
|
|
|
|
|
|
|
#ifndef UKERNEL_STDBOOL_H
|
|
# define UKERNEL_STDBOOL_H
|
|
|
|
|
|
/* types */
|
|
typedef _Bool bool;
|
|
|
|
|
|
/* constants */
|
|
# define false 0
|
|
# define true 1
|
|
|
|
# define __bool_true_false_are_defined 1
|
|
|
|
#endif /* !UKERNEL_STDBOOL_H */
|