mirror of
https://github.com/vim/vim.git
synced 2025-07-04 23:07:33 -04:00
These were missing from commit c2a967a. closes: #16470 Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
12 lines
165 B
C
12 lines
165 B
C
// C boolean constants
|
|
|
|
// Source: https://en.cppreference.com/w/c/language/bool_constant
|
|
|
|
#include <assert.h>
|
|
|
|
int main()
|
|
{
|
|
assert(true == 1 && 0 == false);
|
|
}
|
|
|