diff options
Diffstat (limited to 't/helper/test-print-values.c')
-rw-r--r-- | t/helper/test-print-values.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/t/helper/test-print-values.c b/t/helper/test-print-values.c deleted file mode 100644 index 8f7e5af319..0000000000 --- a/t/helper/test-print-values.c +++ /dev/null @@ -1,10 +0,0 @@ -#include <stdio.h> -#include <string.h> - -int cmd_main(int argc, const char **argv) -{ - if (argc == 2 && strcmp(argv[1], "(size_t)(-20)") == 0) - printf("%zu", (ssize_t)(-20)); - - return 0; -} |