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

freadln.c: reformat

This commit is contained in:
Intel A80486DX2-66 2024-03-10 15:46:24 +03:00
parent 06c5330a67
commit d1a6bb91fa
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -82,9 +82,9 @@ int freadln(FILE* f, char** output, size_t* length_out) {
# define SLEEP_FN Sleep
# define DO_SLEEP 1
# 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__)
defined(__MACH__) || defined(__linux__) || defined(__FreeBSD__) || \
defined(__NetBSD__) || defined(__OpenBSD__) || defined(__bsdi__) || \
defined(__DragonFly__) || defined(__MINGW32__) || defined(__MINGW64__)
# include <unistd.h>
# define SLEEP_FN usleep
# define DO_SLEEP 1