We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to the 6.1 spec, these pair of statements are added to the package-level of every compilation:
Define alias __SIGNED_INT signed fixed bin(p1,0); Define alias __UNSIGNED_INT unsigned fixed bin(p2,0);
A standalone example shows a simple usage here:
pack: package; p: proc options(main); dcl si type __signed_int; dcl ui type __unsigned_int; end p; end pack;
Although not part of a physical library, we should be able to link these to a built-in (or equivalent) with the expected type alias definitions.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
According to the 6.1 spec, these pair of statements are added to the package-level of every compilation:
A standalone example shows a simple usage here:
Although not part of a physical library, we should be able to link these to a built-in (or equivalent) with the expected type alias definitions.
The text was updated successfully, but these errors were encountered: