diff options
| author | jvoisin | 2023-12-15 16:08:12 +0100 |
|---|---|---|
| committer | jvoisin | 2023-12-15 21:41:08 +0100 |
| commit | 57a3e9c1c7507b5ce56122429cc3649009a4ecc7 (patch) | |
| tree | f4fb73a124fd3de49e5cef291077003d797dc2c9 /tests | |
| parent | 8342bc50a16a2158fef729db6cbfef874734e4dc (diff) | |
Remove superfluous includes
This should fix #32
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_mbstowcs_dynamic.c | 2 | ||||
| -rw-r--r-- | tests/test_mbstowcs_static.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_mbstowcs_dynamic.c b/tests/test_mbstowcs_dynamic.c index 81db020..1465bfd 100644 --- a/tests/test_mbstowcs_dynamic.c +++ b/tests/test_mbstowcs_dynamic.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | #include "common.h" | 1 | #include "common.h" |
| 2 | 2 | ||
| 3 | #include <wchar.h> | 3 | #include <stdlib.h> |
| 4 | 4 | ||
| 5 | int main(int argc, char** argv) { | 5 | int main(int argc, char** argv) { |
| 6 | const char* mbstr = "z\u00df\u6c34\U0001f34c"; // or u8"zß水🍌" | 6 | const char* mbstr = "z\u00df\u6c34\U0001f34c"; // or u8"zß水🍌" |
diff --git a/tests/test_mbstowcs_static.c b/tests/test_mbstowcs_static.c index 8dbdfa1..a15c4d6 100644 --- a/tests/test_mbstowcs_static.c +++ b/tests/test_mbstowcs_static.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | #include "common.h" | 1 | #include "common.h" |
| 2 | 2 | ||
| 3 | #include <wchar.h> | 3 | #include <stdlib.h> |
| 4 | 4 | ||
| 5 | int main(int argc, char** argv) { | 5 | int main(int argc, char** argv) { |
| 6 | const char* mbstr = "z\u00df\u6c34\U0001f34c"; // or u8"zß水🍌" | 6 | const char* mbstr = "z\u00df\u6c34\U0001f34c"; // or u8"zß水🍌" |
