1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2025-04-14 00:19:05 +05:30

freadln.c: add missing inclusion of string.h

This commit is contained in:
パチュリー・ノーレッジ 2024-12-30 20:06:54 +03:00
parent f8227e4ffb
commit 2bc49fc527
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

@ -86,6 +86,7 @@ int freadln(FILE* f, char** output, size_t* length_out) {
# include <inttypes.h>
# include <stdbool.h>
# include <stdint.h>
# include <string.h>
# if POSIX
# include <unistd.h>