MacLO/src/stdbool.h

17 lines
272 B
C

// Copyright (c) Jon Thysell <http://jonthysell.com>
// Licensed under the MIT License.
/**
* @file stdbool.h
*
* This file backports the 'bool' boolean type from C99 to C89.
*/
#ifndef STDBOOL_H
#define STDBOOL_H
/** Boolean type. */
typedef Boolean bool;
#endif