// Copyright (c) Jon Thysell // 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