Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/gcc/testsuite/gcc.dg/c11-bool-limits-1.c
2023-03-06 14:48:14 +01:00

13 lines
244 B
C

/* Test limits for _Bool not in <limits.h> in C11. */
/* { dg-do compile } */
/* { dg-options "-std=c11" } */
#include <limits.h>
#ifdef BOOL_MAX
# error "unexpected BOOL_MAX"
#endif
#ifdef BOOL_WIDTH
# error "unexpected BOOL_WIDTH"
#endif