lazarus/components/compilers/c/lazc.pas
mattias 47eae27a96 added lazc package
git-svn-id: trunk@15011 -
2008-04-29 12:55:06 +00:00

22 lines
364 B
ObjectPascal

{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit LazC;
interface
uses
LazCUtil, LazCStrConsts, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('LazCUtil', @LazCUtil.Register);
end;
initialization
RegisterPackage('LazC', @Register);
end.