Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
remove print functions
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinNowak committed Dec 22, 2012
1 parent 0e148e9 commit d4d73bc
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions src/rt/minfo.d
Expand Up @@ -12,10 +12,8 @@

module rt.minfo;

import core.stdc.stdio; // printf
import core.stdc.stdlib; // alloca
import core.stdc.string; // memcpy
import rt.util.console; // console

enum
{
Expand Down Expand Up @@ -338,21 +336,6 @@ body

private:

void print(string m)
{
// write message to stderr
console(m);
}

void println(string m)
{
print(m);
version (Windows)
print("\r\n");
else
print("\n");
}

struct StackRec
{
@property ModuleInfo* mod()
Expand Down

0 comments on commit d4d73bc

Please sign in to comment.