diff options
author | Juan José <soyjuanarbol@gmail.com> | 2025-05-10 09:04:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-10 10:04:59 -0400 |
commit | 8d4218dcd7ac30a510caec3da50374b517ede425 (patch) | |
tree | e01325fdd369666d44da7f3732c6425a943111a3 | |
parent | e4ed92aad71ba48e8c92acb85b62cee5739c2371 (diff) | |
download | libuv-8d4218dcd7ac30a510caec3da50374b517ede425.tar.gz libuv-8d4218dcd7ac30a510caec3da50374b517ede425.zip |
test: remove unused include of <limits.h> in runner.h (#4780)
Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com>
-rw-r--r-- | test/runner.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/runner.h b/test/runner.h index ff7d4eec..249d2919 100644 --- a/test/runner.h +++ b/test/runner.h @@ -22,7 +22,6 @@ #ifndef RUNNER_H_ #define RUNNER_H_ -#include <limits.h> /* PATH_MAX */ #include <stdio.h> /* FILE */ @@ -57,7 +56,7 @@ typedef struct { task_entry_t TASKS[] = { #define TASK_LIST_END \ - { 0, 0, 0, 0, 0, 0 } \ + { 0, 0, 0, 0, 0, 0 } \ }; #define TEST_DECLARE(name) \ |