1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-25 22:18:30 +02:00

Fix indentation style of #defines in Vlogging.c

This makes it so the hash is always in the first column while the rest
of the line follows normal indentation rules.
This commit is contained in:
Misa 2022-11-14 19:28:12 -08:00
parent 9def8fd704
commit 5bb3768782

View File

@ -3,12 +3,12 @@
#include <stdio.h>
#if defined(__unix__) || defined(__APPLE__)
#include <unistd.h>
#define STDOUT_IS_TTY isatty(STDOUT_FILENO)
#define STDERR_IS_TTY isatty(STDERR_FILENO)
# include <unistd.h>
# define STDOUT_IS_TTY isatty(STDOUT_FILENO)
# define STDERR_IS_TTY isatty(STDERR_FILENO)
#else
#define STDOUT_IS_TTY 0
#define STDERR_IS_TTY 0
# define STDOUT_IS_TTY 0
# define STDERR_IS_TTY 0
#endif
#define COLOR(EXPR) color_enabled ? EXPR : ""