mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Fix indentation style of #define
s 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:
parent
9def8fd704
commit
5bb3768782
1 changed files with 5 additions and 5 deletions
|
@ -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 : ""
|
||||
|
|
Loading…
Reference in a new issue