EVOLUTION-MANAGER
Edit File: eglib-config.h
#ifndef __EGLIB_CONFIG_H #define __EGLIB_CONFIG_H /* * System-dependent settings */ #define G_GNUC_PRETTY_FUNCTION #define G_GNUC_UNUSED __attribute__((__unused__)) #define G_BYTE_ORDER G_LITTLE_ENDIAN #define G_GNUC_NORETURN __attribute__((__noreturn__)) #define G_SEARCHPATH_SEPARATOR_S ":" #define G_SEARCHPATH_SEPARATOR ':' #define G_DIR_SEPARATOR '/' #define G_DIR_SEPARATOR_S "/" #define G_BREAKPOINT() G_STMT_START { __asm__ ("int $03"); } G_STMT_END #define G_OS_UNIX #if 1 == 1 #define G_HAVE_ALLOCA_H #endif #if 1 == 1 #define G_HAVE_UNISTD_H #endif typedef size_t gsize; typedef ptrdiff_t gssize; #define G_GSIZE_FORMAT "lu" #if defined (HOST_WATCHOS) #undef G_BREAKPOINT #define G_BREAKPOINT() #endif #if defined (HOST_WASM) #undef G_BREAKPOINT #define G_BREAKPOINT() do { printf ("MONO: BREAKPOINT\n"); abort (); } while (0) #endif typedef int GPid; #endif