mirror of
https://github.com/jonthysell/MacLO.git
synced 2024-09-09 03:54:30 +00:00
1 line
204 B
C
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
|