]> gitweb.factorcode.org Git - factor.git/blob - vm/segments.hpp
Use C++ namespaces
[factor.git] / vm / segments.hpp
1 namespace factor
2 {
3
4 struct F_SEGMENT {
5         CELL start;
6         CELL size;
7         CELL end;
8 };
9
10 }