1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-09-19 14:55:34 +05:30

C: freadln.c: simplify to #ifdef

This commit is contained in:
Intel A80486DX2-66 2024-06-25 11:31:27 +03:00
parent b9ba12c28e
commit 4f37c8a9fe
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -116,7 +116,7 @@ int freadln(FILE* f, char** output, size_t* length_out) {
# endif
# endif
# if defined(NO_SIZE_T_FORMAT)
# ifdef NO_SIZE_T_FORMAT
# define PRIuSIZE PRIuMAX
typedef uintmax_t SIZE_T_FORMAT;
# else