]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/entry_points.hpp
VM: Refactor entry_points to Factor style
[factor.git] / vm / entry_points.hpp
index fc3ae2e400403341cd3b36441d72a905d2503bf7..12501493c7cd6f849b1b2506409f6f549018243b 100644 (file)
@@ -1,9 +1,8 @@
-namespace factor
-{
+namespace factor {
 
-typedef void (* c_to_factor_func_type)(cell quot);
-typedef void (* unwind_native_frames_func_type)(cell quot, void *to);
-typedef cell (* get_fpu_state_func_type)();
-typedef void (* set_fpu_state_func_type)(cell state);
+typedef void (*c_to_factor_func_type)(cell quot);
+typedef void (*unwind_native_frames_func_type)(cell quot, void* to);
+typedef cell (*get_fpu_state_func_type)();
+typedef void (*set_fpu_state_func_type)(cell state);
 
 }