mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00

This solves a compatibility problem with libgmp that erroneously attempts to detect whether <stdio.h> has been included, but doesn't know what the include guards for Sortix libc are.
5 lines
89 B
C
5 lines
89 B
C
#ifndef _FILE_DECL
|
|
#define _FILE_DECL
|
|
typedef struct FILE FILE;
|
|
#define FILE FILE
|
|
#endif
|