phobos/std/stdiobase.d
Sebastian Wilzbach ec47ac4224 Remove the WEB macro in favor of HTTP
replacement: sed 's/\$(WEB/\$(HTTP/g' -i **/*.d
2016-06-16 00:14:51 +02:00

24 lines
753 B
D

// Written in the D programming language.
/**
* The only purpose of this module is to do the static construction for
* std.stdio, to eliminate cyclic construction errors.
*
* Copyright: Copyright Andrei Alexandrescu 2008 - 2009.
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: $(HTTP erdani.org, Andrei Alexandrescu)
* Source: $(PHOBOSSRC std/_stdiobase.d)
*/
/* Copyright Andrei Alexandrescu 2008 - 2009.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
*/
module std.stdiobase;
extern(C) void std_stdio_static_this();
shared static this()
{
std_stdio_static_this();
}