Intrinsicify SpanHelpers.IndexOf(char) (dotnet/coreclr#22505)
[mono-project.git] / mono / eglib / eglib-config.h.in
blobebd5aaeee739a9895a7a62a6be5d827339e614e7
1 #ifndef __EGLIB_CONFIG_H
2 #define __EGLIB_CONFIG_H
4 /*
5 * System-dependent settings
6 */
7 #define G_GNUC_PRETTY_FUNCTION @GNUC_PRETTY@
8 #define G_GNUC_UNUSED @GNUC_UNUSED@
9 #define G_BYTE_ORDER @ORDER@
10 #define G_GNUC_NORETURN @GNUC_NORETURN@
11 #define G_SEARCHPATH_SEPARATOR_S "@SEARCHSEP@"
12 #define G_SEARCHPATH_SEPARATOR '@SEARCHSEP@'
13 #define G_DIR_SEPARATOR '@PATHSEP@'
14 #define G_DIR_SEPARATOR_S "@PATHSEP@"
15 #define G_BREAKPOINT() @BREAKPOINT@
16 #define G_OS_@OS@
18 #if @HAVE_ALLOCA_H@ == 1
19 #define G_HAVE_ALLOCA_H
20 #endif
22 #if @HAVE_UNISTD_H@ == 1
23 #define G_HAVE_UNISTD_H
24 #endif
26 typedef @GSIZE@ gsize;
27 typedef @GSSIZE@ gssize;
29 #define G_GSIZE_FORMAT @GSIZE_FORMAT@
31 #if defined (HOST_WATCHOS)
32 #undef G_BREAKPOINT
33 #define G_BREAKPOINT()
34 #endif
36 #if defined (HOST_WASM)
37 #undef G_BREAKPOINT
38 #define G_BREAKPOINT() do { printf ("MONO: BREAKPOINT\n"); abort (); } while (0)
39 #endif
41 typedef @PIDTYPE@ GPid;
43 #endif