This website requires JavaScript.
Explore
Help
Sign in
kotovalexarian-likes-gitlab
/
sortix--sortix
Watch
1
Star
0
Fork
You've already forked sortix--sortix
0
mirror of
https://gitlab.com/sortix/sortix.git
synced
2023-02-13 20:55:38 -05:00
Code
Releases
Activity
061eddff91
sortix--sortix
/
libc
/
decl
/
FILE.h
6 lines
89 B
C
Raw
Normal View
History
Unescape
Escape
Initial version of Sortix.
2011-08-05 14:25:00 +02:00
#
ifndef _FILE_DECL
#
define _FILE_DECL
Move the declaration of the FILE structure into its own header.
2013-10-01 15:33:53 +02:00
typedef
struct
FILE
FILE
;
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-09-19 20:13:44 +02:00
#
define FILE FILE
Initial version of Sortix.
2011-08-05 14:25:00 +02:00
#
endif
Copy permalink