1 /* This file is needed by libio to define various configuration parameters. 2 These are always the same in the GNU C library. */ 3 4 #ifndef _G_config_h 5 #define _G_config_h 1 6 7 // bonefish: Not needed. 8 // #include <libc-symbols.h> 9 // #include <bits/types.h> 10 11 #define _GLIBCPP_USE_THREADS 12 #define _GLIBCPP_USE_WCHAR_T 13 14 #ifndef _IO_MTSAFE_IO 15 #define _IO_MTSAFE_IO 16 #endif 17 18 /* Define types for libio in terms of the standard internal type names. */ 19 20 #include <sys/types.h> 21 #define __need_size_t 22 #define __need_wchar_t 23 #define __need_wint_t 24 #define __need_NULL 25 #define __need_ptrdiff_t 26 #ifdef __cplusplus 27 # include <cstddef> 28 #else 29 # include <stddef.h> 30 #endif 31 32 //#include <wchar.h> 33 34 #ifndef _WINT_T 35 /* Integral type unchanged by default argument promotions that can 36 hold any value corresponding to members of the extended character 37 set, as well as at least one value that does not correspond to any 38 member of the extended character set. */ 39 # define _WINT_T 40 typedef unsigned int wint_t; 41 #endif 42 43 /* For use as part of glibc (native) or as part of libstdc++ (maybe 44 not glibc) */ 45 #ifndef __c_mbstate_t_defined 46 # define __c_mbstate_t_defined 1 47 # ifdef _GLIBCPP_USE_WCHAR_T 48 typedef struct 49 { 50 int count; 51 wint_t value; 52 } __c_mbstate_t; 53 # endif 54 #endif 55 #undef __need_mbstate_t 56 57 typedef size_t _G_size_t; 58 59 60 #if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T 61 typedef struct 62 { 63 off_t __pos; 64 __c_mbstate_t __state; 65 } _G_fpos_t; 66 67 typedef struct 68 { 69 off_t __pos; 70 __c_mbstate_t __state; 71 } _G_fpos64_t; 72 #else 73 typedef off_t _G_fpos_t; 74 typedef off_t _G_fpos64_t; 75 #endif 76 #define __off_t off_t 77 #define _G_ssize_t ssize_t 78 #define _G_off_t off_t 79 #define _G_off64_t off_t 80 #define _G_pid_t pid_t 81 #define _G_uid_t uid_t 82 #define _G_wchar_t wchar_t 83 #define _G_wint_t wint_t 84 #define _G_stat64 stat 85 86 // bonefish: Not needed. 87 // #include <iconv/gconv.h> 88 // typedef union 89 // { 90 // struct __gconv_info __cd; 91 // struct 92 // { 93 // struct __gconv_info __cd; 94 // struct __gconv_step_data __data; 95 // } __combined; 96 // } _G_iconv_t; 97 98 99 typedef int _G_int16_t __attribute__ ((__mode__ (__HI__))); 100 typedef int _G_int32_t __attribute__ ((__mode__ (__SI__))); 101 typedef unsigned int _G_uint16_t __attribute__ ((__mode__ (__HI__))); 102 typedef unsigned int _G_uint32_t __attribute__ ((__mode__ (__SI__))); 103 104 #define _G_HAVE_BOOL 1 105 106 107 /* These library features are always available in the GNU C library. */ 108 #define _G_HAVE_ATEXIT 1 109 #define _G_HAVE_SYS_CDEFS 1 110 #define _G_HAVE_SYS_WAIT 1 111 #define _G_NEED_STDARG_H 1 112 #define _G_va_list __gnuc_va_list 113 114 #define _G_HAVE_PRINTF_FP 1 115 //#define _G_HAVE_MMAP 1 116 #define _G_HAVE_LONG_DOUBLE_IO 1 117 #define _G_HAVE_IO_FILE_OPEN 1 118 #define _G_HAVE_IO_GETLINE_INFO 1 119 120 #define _G_IO_IO_FILE_VERSION 0x20001 121 122 //#define _G_OPEN64 __open64 123 //#define _G_LSEEK64 __lseek64 124 //#define _G_FSTAT64(fd,buf) __fxstat64 (_STAT_VER, fd, buf) 125 126 /* This is defined by <bits/stat.h> if `st_blksize' exists. */ 127 /*#define _G_HAVE_ST_BLKSIZE defined (_STATBUF_ST_BLKSIZE)*/ 128 129 #define _G_BUFSIZ 8192 130 131 /* These are the vtbl details for ELF. */ 132 #define _G_NAMES_HAVE_UNDERSCORE 0 133 #define _G_VTABLE_LABEL_HAS_LENGTH 1 134 // avoid vtable-thunks, as BeOS never used those: 135 #ifdef _G_USING_THUNKS 136 #undef _G_USING_THUNKS 137 #endif /* _G_USING_THUNKS */ 138 #define _G_VTABLE_LABEL_PREFIX "_vt." 139 #define _G_VTABLE_LABEL_PREFIX_ID _vt. 140 141 #define _G_INTERNAL_CCS "UCS4" 142 #define _G_HAVE_WEAK_SYMBOL 1 143 #define _G_STDIO_USES_LIBIO 1 144 145 #if defined __cplusplus || defined __STDC__ 146 # define _G_ARGS(ARGLIST) ARGLIST 147 #else 148 # define _G_ARGS(ARGLIST) () 149 #endif 150 151 #endif /* _G_config.h */ 152