1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2025-01-10 08:27:48 +05:30

reverse-ramdisk.c: correct POSIX version requirement

This commit is contained in:
パチュリー・ノーレッジ 2023-12-28 00:39:59 +03:00
parent 1c61eec1ce
commit 021333aca6
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -20,7 +20,7 @@ To-Do: Add thread-safe versions of functions (use postfix `_r`)
#include <stdlib.h>
#include <string.h>
#if _POSIX_VERSION >= 200809L && defined(_POSIX_SYNCHRONIZED_IO)
#if _POSIX_VERSION >= 200112L
# include <fcntl.h>
# include <unistd.h>
# define IS_POSIX 1