stdbool.h 344 B

12345678910111213141516171819
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #ifndef _WAMR_LIBC_STDBOOL_H
  6. #define _WAMR_LIBC_STDBOOL_H
  7. #define __bool_true_false_are_defined 1
  8. #ifndef __cplusplus
  9. #define bool _Bool
  10. #define false 0
  11. #define true 1
  12. #endif /* __cplusplus */
  13. #endif