Allow returning something of type void in a function that returns void
[delight/core.git] / phobos2 / frag-ac.in
blob5d0317a9c2f03d81acc04f334f4a04f775ef33ed
1 module gcc.config.config;
3 const bool Have_strtold = @DCFG_STRTOLD@;
5 // C stdio config for std.stdio
6 const bool Have_fwide = @DCFG_FWIDE@;
7 const bool Have_getdelim = @DCFG_HAVE_GETDELIM@;
8 const bool Have_fgetln = @DCFG_HAVE_FGETLN@;
9 const bool Have_fgetline = @DCFG_HAVE_FGETLINE@;
10 const bool Have_Unlocked_Stdio = @DCFG_HAVE_UNLOCKED_STDIO@;
11 const bool Have_Unlocked_Wide_Stdio = @DCFG_HAVE_UNLOCKED_WIDE_STDIO@;
13 // fpclassify / signbit interface
14 const bool Use_IEEE_fpsb = @DCFG_USE_IEEE_FPSB@;
16 // Some kind of memory map interface that std.mmfile can use
17 // const bool Have_Memory_Map = @DCFG_HAVE_MEMORY_MAP@;
18 version (Windows)
19     const bool Have_Memory_Map = true;
20 else version (Unix)
21     const bool Have_Memory_Map = true;
22 else
23     const bool Have_Memory_Map = true;
25 const bool Use_ARM_EABI_Unwinder = @DCFG_ARM_EABI_UNWINDER@;