MacLO/src/stdbool.h

17 lines
272 B
C
Raw Permalink Normal View History

2021-10-11 18:11:48 +00:00
// Copyright (c) Jon Thysell <http://jonthysell.com>
// Licensed under the MIT License.
2021-12-07 19:07:28 +00:00
/**
* @file stdbool.h
*
* This file backports the 'bool' boolean type from C99 to C89.
*/
2021-10-11 18:11:48 +00:00
#ifndef STDBOOL_H
#define STDBOOL_H
2021-12-07 19:07:28 +00:00
/** Boolean type. */
typedef Boolean bool;
2021-10-11 18:11:48 +00:00
#endif