/* -*- mode:c; c-file-style:"k&r"; c-basic-offset: 4; tab-width:4; indent-tabs-mode:nil; mode:auto-fill; fill-column:78; -*- */ /* vim: set ts=4 sw=4 et tw=78 fo=cqt wm=0: */ #ifndef __INTERNAL_H__ #define __INTERNAL_H__ #include #include #include #include "api.h" #define PAL_LOADER XSTRINGIFY(PAL_LOADER_PATH) #ifdef __x86_64__ # include "sysdep-x86_64.h" #else # error "unsupported architecture" #endif #define IS_ERR INTERNAL_SYSCALL_ERROR #define IS_ERR_P INTERNAL_SYSCALL_ERROR_P #define ERRNO INTERNAL_SYSCALL_ERRNO #define ERRNO_P INTERNAL_SYSCALL_ERRNO_P int printf (const char * fmt, ...); void * malloc (size_t size); void free (void * mem); #endif /* __INTERNAL_H__ */