mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-14 03:43:13 +01:00
Fixed D-style varargs returning through pointer. Fixed converting nested function to delegate. Added std.string and std.format to Phobos.
36 lines
447 B
D
36 lines
447 B
D
module phobos;
|
|
|
|
import
|
|
std.array,
|
|
std.ctype,
|
|
std.format,
|
|
std.intrinsic,
|
|
std.math,
|
|
std.moduleinit,
|
|
std.outofmemory,
|
|
std.stdint,
|
|
std.stdio,
|
|
std.stdarg,
|
|
std.string,
|
|
std.uni,
|
|
std.utf,
|
|
|
|
std.c.fenv,
|
|
std.c.locale,
|
|
std.c.math,
|
|
std.c.process,
|
|
std.c.stdarg,
|
|
std.c.stddef,
|
|
std.c.stdio,
|
|
std.c.stdlib,
|
|
std.c.string,
|
|
std.c.time;
|
|
|
|
version(linux) {
|
|
import
|
|
std.c.linux.linux,
|
|
std.c.linux.linuxextern,
|
|
std.c.linux.pthread,
|
|
std.c.linux.socket;
|
|
}
|