fixed MSVC support

This commit is contained in:
2023-06-01 22:22:44 -05:00
committed by cpunch
parent 2d0e63f706
commit d27d94975e
7 changed files with 732 additions and 12 deletions

7
main.c
View File

@@ -10,8 +10,11 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <getopt.h>
#ifdef _WIN32
# include "util/getopt.h"
#else
# include <getopt.h>
#endif
static bool _ACTIVE = false;