sortix-mirror/libc/decl/FILE.h
Jonas 'Sortie' Termansen 48931408f4 Make FILE a macro that expands to FILE.
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.
2013-12-19 17:42:07 +01:00

6 lines
89 B
C

#ifndef _FILE_DECL
#define _FILE_DECL
typedef struct FILE FILE;
#define FILE FILE
#endif