20 lines
519 B
C++
20 lines
519 B
C++
/** @file interpreter2_register_primitives.hpp
|
|
*
|
|
* @author Roland Conybeare, Mar 2026
|
|
**/
|
|
|
|
#pragma once
|
|
|
|
#include "PrimitiveRegistry.hpp"
|
|
#include <xo/alloc2/Collector.hpp>
|
|
|
|
namespace xo {
|
|
namespace scm {
|
|
/** Register primitive-factories **/
|
|
bool interpreter2_register_primitives(obj<xo::mm::AAllocator> gc,
|
|
InstallSink sink,
|
|
InstallFlags flags);
|
|
}
|
|
}
|
|
|
|
/* end interpreter2_register_primitives.hpp */
|