# # STDIO/MAIN.D - Root of the stdio library # # The stdio library is self contained. We import whatever libraries # we need. This also makes us shareable. Note that we do not give # those who import us access to the system library via our import. # It is opaque. Note that 'import selfcontained' must occur before # any potentially shared imports as they might recursively import us. # import selfcontained; import "sys"; # The modules making up the stdio library # public import "file.d"; public import "fopen.d"; public import "misc.d"; public import "fseek.d"; public import "fwrite.d"; public import "fread.d"; public import "fputs.d"; public import "fgets.d"; public import "show.d";