This repository has been archived on 2024-03-07. You can view files and clone it, but cannot push or open issues/pull-requests.
zarn/libstd/macro.hpp

13 lines
207 B
C++
Raw Permalink Normal View History

#ifndef MACRO_HPP
#define MACRO_HPP
#include "common.hpp"
2023-09-19 09:29:23 +00:00
void assert_fail(Node const& node, Module& mod);
2023-09-19 09:29:23 +00:00
void declare(Node const& node, Module& mod);
2023-09-19 04:38:14 +00:00
2023-09-19 10:50:12 +00:00
void block(Node const& node, Module& mod);
#endif