stop a warning when compiling util/stripbs.c

This commit is contained in:
nhmall
2025-03-11 10:46:08 -04:00
parent 4a67caf3d7
commit 8f84f76f09

View File

@@ -12,7 +12,13 @@
#include <string.h>
#include <errno.h>
int main(int argc, char *argv[])
#if defined(__GNUC__)
#define UNUSED __attribute__((unused))
#else
#define UNUSED
#endif
int main(int argc UNUSED, char *argv[] UNUSED)
{
int stop = 0, trouble = 0;
char buf[2];