Add pragma to stdlib itself.

This commit is contained in:
chriseth 2022-07-14 17:56:29 +02:00 committed by Nikola Matic
parent dc992ae767
commit b46ed6b335

View File

@ -1,5 +1,7 @@
// SPDX-License-Identifier: Apache-2.0
pragma stdlib;
function sha256(bytes memory input) returns (bytes32 ret) {
assembly {
let success := staticcall(gas(), 2, add(input, 32), mload(input), 0, 32)