initial commit
[A2k.git] / crtl / crtl.ads
blobb6da61320cdee0c943efee47d3475ebd0c3a7c5a
1 with System;
3 package Crtl is
4 pragma Preelaborate;
6 type size_t is mod 2 ** Standard'Address_Size;
8 function memcpy
9 (S1 : System.Address; S2 : System.Address; N : size_t)
10 return System.Address;
11 pragma Export (C, memcpy, "memcpy");
13 end Crtl;