diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-01-24 01:43:01 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-01-24 01:43:01 +0900 |
| commit | c780cbb6acd0e0526f2d305138190392bdc8cdd7 (patch) | |
| tree | df1edba6eb5778a00e1f4c8a5051414d5bb37e71 /tests/stdlib_declarations.sh | |
| parent | d179d944c0633d3aa2420009335791b115f67052 (diff) | |
| download | ducc-c780cbb6acd0e0526f2d305138190392bdc8cdd7.tar.gz ducc-c780cbb6acd0e0526f2d305138190392bdc8cdd7.tar.zst ducc-c780cbb6acd0e0526f2d305138190392bdc8cdd7.zip | |
refactor: organize test files
Diffstat (limited to 'tests/stdlib_declarations.sh')
| -rw-r--r-- | tests/stdlib_declarations.sh | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/stdlib_declarations.sh b/tests/stdlib_declarations.sh deleted file mode 100644 index efd6a30..0000000 --- a/tests/stdlib_declarations.sh +++ /dev/null @@ -1,21 +0,0 @@ -cat <<'EOF' > expected -EOF -test_diff <<'EOF' -typedef long size_t; - -int atoi(const char*); -void* calloc(size_t, size_t); -void exit(int); -int getchar(void); -int isalnum(int); -int isalpha(int); -int isdigit(int); -int isspace(int); -void* memcpy(void*, void*, size_t); -int printf(const char*, ...); -int sprintf(char*, const char*, ...); -int strcmp(const char*, const char*); -char* strstr(const char*, const char*); - -int main() { return 0; } -EOF |
