1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-11-12 22:45:54 +05:30

freadln.c: test: add extra parentheses into #if condition

Test: Add extra parentheses around the conjunction among disjunctions:
      X || (Y && Z)
This commit is contained in:
Intel A80486DX2-66 2024-04-07 17:41:52 +03:00
parent 60e8d00b5b
commit 1925a88e7a
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -87,8 +87,8 @@ int freadln(FILE* f, char** output, size_t* length_out) {
# include <windows.h>
# define SLEEP_FN(x) Sleep((DWORD) x)
# define DO_SLEEP 1
# elif defined(__CYGWIN__) || defined(__unix__) || defined(__APPLE__) && \
defined(__MACH__) || defined(__linux__) || defined(__FreeBSD__) || \
# elif defined(__CYGWIN__) || defined(__unix__) || (defined(__APPLE__) && \
defined(__MACH__)) || defined(__linux__) || defined(__FreeBSD__) || \
defined(__NetBSD__) || defined(__OpenBSD__) || defined(__bsdi__) || \
defined(__DragonFly__) || defined(__MINGW32__) || defined(__MINGW64__)
# include <unistd.h>