hcl/lib/h2-slim.ads

11 lines
249 B
Ada
Raw Normal View History

with H2.Scheme;
package H2.Slim is
subtype Character is Standard.Character;
type String is array(System_Index range<>) of Character;
package Scheme is new H2.Scheme (Character);
2014-06-17 15:23:35 +00:00
pragma Assert (Character'Size = System_Byte'Size);
end H2.Slim;