diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-09-04 23:01:57 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-09-04 23:01:57 +0900 |
| commit | 6e4010b7c14af83b15d28bc020fe601991d209d3 (patch) | |
| tree | 47ac0cab9efec069a20b4ea99610fdba478afd1b | |
| parent | e342992a135e68d10716d9da920cb3af62a7d750 (diff) | |
| download | ducc-6e4010b7c14af83b15d28bc020fe601991d209d3.tar.gz ducc-6e4010b7c14af83b15d28bc020fe601991d209d3.tar.zst ducc-6e4010b7c14af83b15d28bc020fe601991d209d3.zip | |
test: #include standard headers
| -rw-r--r-- | tests/include_stdc.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/include_stdc.sh b/tests/include_stdc.sh new file mode 100644 index 0000000..7357bc9 --- /dev/null +++ b/tests/include_stdc.sh @@ -0,0 +1,18 @@ +cat <<'EOF' > expected +EOF + +test_diff <<'EOF' +#include <assert.h> +#include <errno.h> +#include <limits.h> +#include <locale.h> +#include <setjmp.h> +#include <stdarg.h> +#include <stddef.h> +#include <stdint.h> +#include <stdio.h> +#include <time.h> +#include <uchar.h> + +int main() {} +EOF |
