]> gitweb.factorcode.org Git - factor.git/blob - vm/os-macosx.h
Initial import
[factor.git] / vm / os-macosx.h
1 #define DLLEXPORT __attribute__((visibility("default")))
2 #define FACTOR_OS_STRING "macosx"
3 #define NULL_DLL "libfactor.dylib"
4 #define UNKNOWN_TYPE_P(file) ((file)->d_type == DT_UNKNOWN)
5 #define DIRECTORY_P(file) ((file)->d_type == DT_DIR)
6
7 void init_signals(void);
8 void early_init(void);
9
10 const char *vm_executable_path(void);
11 const char *default_image_path(void);
12
13 DLLEXPORT void c_to_factor_toplevel(CELL quot);