mirror of
https://github.com/dlang/phobos.git
synced 2025-05-04 00:54:05 +03:00

* Transformed std.c.linux.* into wrappers around core.sys.posix modules where appropriate. * Added std.c.osx as the OSX equivalent of std.c.linux. * Added std.c.osx.socket for OSX-specific socket declarations not covered by the Posix spec. * Altered all makefiles to zip, etc, the new std.c.osx package.
23 lines
740 B
D
23 lines
740 B
D
|
|
/* Written by Walter Bright, Christopher E. Miller, and many others.
|
|
* http://www.digitalmars.com/d/
|
|
* Placed into public domain.
|
|
* Linux(R) is the registered trademark of Linus Torvalds in the U.S. and other
|
|
* countries.
|
|
*/
|
|
|
|
module std.c.linux.linux;
|
|
|
|
public import std.c.linux.linuxextern;
|
|
public import std.c.linux.pthread;
|
|
public import core.sys.posix.dirent;
|
|
public import core.sys.posix.dlfcn;
|
|
public import core.sys.posix.fcntl;
|
|
public import core.sys.posix.pwd;
|
|
public import core.sys.posix.time;
|
|
public import core.sys.posix.unistd;
|
|
public import core.sys.posix.utime;
|
|
public import core.sys.posix.sys.mman;
|
|
public import core.sys.posix.sys.stat;
|
|
public import core.sys.posix.sys.time;
|
|
public import core.sys.posix.sys.wait;
|