3 This code was written as part of the CMU Common Lisp project at
4 Carnegie Mellon University, and has been placed in the public domain.
11 #include <sys/types.h>
14 typedef caddr_t os_vm_address_t;
15 typedef size_t os_vm_size_t;
16 typedef off_t os_vm_offset_t;
17 typedef int os_vm_prot_t;
19 #define OS_VM_PROT_READ PROT_READ
20 #define OS_VM_PROT_WRITE PROT_WRITE
21 #define OS_VM_PROT_EXECUTE PROT_EXEC
23 #define OS_VM_DEFAULT_PAGESIZE 8192
25 #endif /* _OSF1_OS_H_ */