]> gitweb.factorcode.org Git - factor.git/blob - vm/primitives.cpp
Merge branch 'vm' of git://github.com/littledan/Factor
[factor.git] / vm / primitives.cpp
1 #include "master.hpp"
2
3 namespace factor
4 {
5
6 #define PRIMITIVE(name) VM_C_API void primitive_##name(factor_vm *parent) \
7 { \
8         parent->primitive_##name(); \
9 }
10
11 EACH_PRIMITIVE(PRIMITIVE)
12
13 }