yolobs-studio/libobs/util/vc/vc_stdbool.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
159 B
C
Raw Normal View History

2016-02-23 23:16:51 +00:00
#pragma once
#if !defined(__cplusplus)
2019-09-22 21:19:10 +00:00
typedef int8_t _Bool;
2016-02-23 23:16:51 +00:00
#define bool _Bool
#define true 1
#define false 0
#define __bool_true_false_are_defined 1
#endif