Skip to content

Commit

Permalink
fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
pks-t committed Sep 7, 2024
1 parent 24e3e9b commit f4ae654
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/clar.c
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
#include <errno.h>
#include <fcntl.h>
#include <limits.h>
#include <stdio.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>

#include "clar.h"

#if defined(__MSYS__) || defined(__MINGW32__)
#ifdef _WIN32
# define WIN32_LEAN_AND_MEAN
# include <windows.h>

Expand Down Expand Up @@ -130,6 +127,9 @@ static void run(const char *expected_output_file, int expected_error_code, ...)
}

#else
# include <errno.h>
# include <fcntl.h>
# include <limits.h>
# include <unistd.h>
# include <sys/wait.h>

Expand Down

0 comments on commit f4ae654

Please sign in to comment.