Enable fileno() for POSIX system in minigzip.c.

This commit is contained in:
Paul Marquess 2024-02-04 21:49:53 +00:00 committed by Mark Adler
parent abd3d1a289
commit 4b98fd39c8

View File

@ -15,6 +15,10 @@
/* @(#) $Id$ */
#ifndef _POSIX_C_SOURCE
# define _POSIX_C_SOURCE 200112L
#endif
#include "zlib.h"
#include <stdio.h>