blob: 6b76d28716b9085af6268328bd4f7d0654471f55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//
// Copyright 2015 Ettus Research LLC
//
// SPDX-License-Identifier: GPL-3.0
//
#ifndef INCLUDED_MSC_STDBOOL_H
#define INCLUDED_MSC_STDBOOL_H
#ifndef _MSC_VER
#error "Use this header only with Microsoft Visual C++ compilers!"
#endif
#ifndef __cplusplus
#define bool int
#define true 1
#define false 0
#endif
#endif /* INCLUDED_MSC_STDBOOL_H */
|