Browse Source

Merge "TF-A: Redefine true/false definitions" into integration

pull/1979/head
Madhukar Pappireddy 4 years ago
committed by TrustedFirmware Code Review
parent
commit
70501930dd
  1. 6
      include/lib/libc/stdbool.h

6
include/lib/libc/stdbool.h

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. * Copyright (c) 2018-2020, ARM Limited and Contributors. All rights reserved.
* *
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
@ -9,8 +9,8 @@
#define bool _Bool #define bool _Bool
#define true 1 #define true (0 < 1)
#define false 0 #define false (0 > 1)
#define __bool_true_false_are_defined 1 #define __bool_true_false_are_defined 1

Loading…
Cancel
Save