MacLO/src/stdbool.h

1 line
204 B
C

// Copyright (c) Jon Thysell <http://jonthysell.com>
// Licensed under the MIT License.
#ifndef STDBOOL_H
#define STDBOOL_H
#ifndef true
typedef char bool;
#define true 1
#define false 0
#endif
#endif