inc/umock_c/aux_inc/stdbool.h (13 lines of code) (raw):
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
#ifndef STDBOOL_H
#define STDBOOL_H
#define __bool_true_false_are_defined 1
#define HAS_STDBOOL
#ifndef __cplusplus
typedef unsigned char bool;
#ifdef _MSC_VER
typedef bool _Bool;
#endif
#define false 0
#define true 1
#endif /* __cplusplus */
#endif /* STDBOOL_H */