view dmd/LINK.d @ 150:a79be6756969

removed unneeded files
author Trass3r
date Tue, 14 Sep 2010 15:49:40 +0200
parents 10317f0c89a5
children
line wrap: on
line source

module dmd.LINK;

enum LINK
{
    LINKdefault,
    LINKd,
    LINKc,
    LINKcpp,
    LINKwindows,
    LINKpascal,
}

import dmd.EnumUtils;
mixin(BringToCurrentScope!(LINK));