Rune - Stabilization (constructors, destructors), misc.
[rune.git] / classes / stdio / main.d
1 #
2 # STDIO/MAIN.D - Root of the stdio library
3 #
4 # The stdio library is self contained.  We import whatever libraries
5 # we need.  This also makes us shareable.  Note that we do not give
6 # those who import us access to the system library via our import.
7 # It is opaque.  Note that 'import selfcontained' must occur before
8 # any potentially shared imports as they might recursively import us.
9 #
10 import selfcontained;
11 limport "sys";
12
13 # The modules making up the stdio library
14 #
15 public limport "file.d";
16 public limport "fopen.d";
17 public limport "misc.d";
18 public limport "fwrite.d";
19 public limport "fread.d";
20 public limport "fputs.d";
21 public limport "fgets.d";
22 public limport "show.d";