config-linux.h 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076
  1. /* lib/config.h. Generated from config.in.h by configure. */
  2. /* lib/config.in.h. Generated from configure.ac by autoheader. */
  3. /* Define if building universal (internal helper macro) */
  4. /* #undef AC_APPLE_UNIVERSAL_BUILD */
  5. /* Define to the number of bits in type 'ptrdiff_t'. */
  6. /* #undef BITSIZEOF_PTRDIFF_T */
  7. /* Define to the number of bits in type 'sig_atomic_t'. */
  8. /* #undef BITSIZEOF_SIG_ATOMIC_T */
  9. /* Define to the number of bits in type 'size_t'. */
  10. /* #undef BITSIZEOF_SIZE_T */
  11. /* Define to the number of bits in type 'wchar_t'. */
  12. /* #undef BITSIZEOF_WCHAR_T */
  13. /* Define to the number of bits in type 'wint_t'. */
  14. /* #undef BITSIZEOF_WINT_T */
  15. /* Define if you wish *printf() functions that have a safe handling of
  16. non-IEEE-754 'long double' values. */
  17. #define CHECK_PRINTF_SAFE 1
  18. /* Define to 1 if using 'alloca.c'. */
  19. /* #undef C_ALLOCA */
  20. /* Define as the bit index in the word where to find bit 0 of the exponent of
  21. 'double'. */
  22. #define DBL_EXPBIT0_BIT 20
  23. /* Define as the word index where to find the exponent of 'double'. */
  24. #define DBL_EXPBIT0_WORD 1
  25. /* Define as the bit index in the word where to find the sign of 'double'. */
  26. /* #undef DBL_SIGNBIT_BIT */
  27. /* Define as the word index where to find the sign of 'double'. */
  28. /* #undef DBL_SIGNBIT_WORD */
  29. /* Define to 1 if // is a file system root distinct from /. */
  30. /* #undef DOUBLE_SLASH_IS_DISTINCT_ROOT */
  31. /* Define to 1 if translation of program messages to the user's native
  32. language is requested. */
  33. /* #undef ENABLE_NLS */
  34. /* Define to 1 if the package shall run at any location in the file system. */
  35. /* #undef ENABLE_RELOCATABLE */
  36. /* Define this to 1 if F_DUPFD behavior does not match POSIX */
  37. /* #undef FCNTL_DUPFD_BUGGY */
  38. /* Define as the bit index in the word where to find bit 0 of the exponent of
  39. 'float'. */
  40. #define FLT_EXPBIT0_BIT 23
  41. /* Define as the word index where to find the exponent of 'float'. */
  42. #define FLT_EXPBIT0_WORD 0
  43. /* Define as the bit index in the word where to find the sign of 'float'. */
  44. /* #undef FLT_SIGNBIT_BIT */
  45. /* Define as the word index where to find the sign of 'float'. */
  46. /* #undef FLT_SIGNBIT_WORD */
  47. /* Define to 1 if fopen() fails to recognize a trailing slash. */
  48. /* #undef FOPEN_TRAILING_SLASH_BUG */
  49. /* Define to 1 if realpath() can malloc memory, always gives an absolute path,
  50. and handles trailing slash correctly. */
  51. #define FUNC_REALPATH_WORKS 1
  52. /* Define this to 'void' or 'struct timezone' to match the system's
  53. declaration of the second argument to gettimeofday. */
  54. #define GETTIMEOFDAY_TIMEZONE void
  55. /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
  56. whether the gnulib module canonicalize-lgpl shall be considered present. */
  57. #define GNULIB_CANONICALIZE_LGPL 1
  58. /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
  59. whether the gnulib module close-stream shall be considered present. */
  60. #define GNULIB_CLOSE_STREAM 1
  61. /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
  62. whether the gnulib module dirname shall be considered present. */
  63. #define GNULIB_DIRNAME 1
  64. /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
  65. whether the gnulib module fd-safer-flag shall be considered present. */
  66. #define GNULIB_FD_SAFER_FLAG 1
  67. /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
  68. whether the gnulib module fopen-gnu shall be considered present. */
  69. #define GNULIB_FOPEN_GNU 1
  70. /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
  71. whether the gnulib module fopen-safer shall be considered present. */
  72. #define GNULIB_FOPEN_SAFER 1
  73. /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
  74. whether the gnulib module fscanf shall be considered present. */
  75. #define GNULIB_FSCANF 1
  76. /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
  77. whether the gnulib module lock shall be considered present. */
  78. #define GNULIB_LOCK 1
  79. /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
  80. whether the gnulib module malloc-gnu shall be considered present. */
  81. #define GNULIB_MALLOC_GNU 1
  82. /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
  83. whether the gnulib module msvc-nothrow shall be considered present. */
  84. #define GNULIB_MSVC_NOTHROW 1
  85. /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
  86. whether the gnulib module pipe2-safer shall be considered present. */
  87. #define GNULIB_PIPE2_SAFER 1
  88. /* Define to 1 if printf and friends should be labeled with attribute
  89. "__gnu_printf__" instead of "__printf__" */
  90. /* #undef GNULIB_PRINTF_ATTRIBUTE_FLAVOR_GNU */
  91. /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
  92. whether the gnulib module scanf shall be considered present. */
  93. #define GNULIB_SCANF 1
  94. /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
  95. whether the gnulib module snprintf shall be considered present. */
  96. #define GNULIB_SNPRINTF 1
  97. /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
  98. whether the gnulib module strerror shall be considered present. */
  99. #define GNULIB_STRERROR 1
  100. /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
  101. whether the gnulib module strerror_r-posix shall be considered present. */
  102. /* #undef GNULIB_STRERROR_R_POSIX */
  103. /* Define to 1 when the gnulib module calloc-posix should be tested. */
  104. #define GNULIB_TEST_CALLOC_POSIX 1
  105. /* Define to 1 when the gnulib module canonicalize_file_name should be tested.
  106. */
  107. #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1
  108. /* Define to 1 when the gnulib module chdir should be tested. */
  109. /* #undef GNULIB_TEST_CHDIR */
  110. /* Define to 1 when the gnulib module cloexec should be tested. */
  111. #define GNULIB_TEST_CLOEXEC 1
  112. /* Define to 1 when the gnulib module close should be tested. */
  113. #define GNULIB_TEST_CLOSE 1
  114. /* Define to 1 when the gnulib module dup2 should be tested. */
  115. #define GNULIB_TEST_DUP2 1
  116. /* Define to 1 when the gnulib module environ should be tested. */
  117. #define GNULIB_TEST_ENVIRON 1
  118. /* Define to 1 when the gnulib module fcntl should be tested. */
  119. #define GNULIB_TEST_FCNTL 1
  120. /* Define to 1 when the gnulib module fopen should be tested. */
  121. #define GNULIB_TEST_FOPEN 1
  122. /* Define to 1 when the gnulib module fprintf-posix should be tested. */
  123. #define GNULIB_TEST_FPRINTF_POSIX 1
  124. /* Define to 1 when the gnulib module frexp should be tested. */
  125. #define GNULIB_TEST_FREXP 1
  126. /* Define to 1 when the gnulib module frexpl should be tested. */
  127. #define GNULIB_TEST_FREXPL 1
  128. /* Define to 1 when the gnulib module fstat should be tested. */
  129. /* #undef GNULIB_TEST_FSTAT */
  130. /* Define to 1 when the gnulib module fsync should be tested. */
  131. #define GNULIB_TEST_FSYNC 1
  132. /* Define to 1 when the gnulib module getdelim should be tested. */
  133. /* #undef GNULIB_TEST_GETDELIM */
  134. /* Define to 1 when the gnulib module getdtablesize should be tested. */
  135. #define GNULIB_TEST_GETDTABLESIZE 1
  136. /* Define to 1 when the gnulib module getline should be tested. */
  137. #define GNULIB_TEST_GETLINE 1
  138. /* Define to 1 when the gnulib module getopt-posix should be tested. */
  139. #define GNULIB_TEST_GETOPT_POSIX 1
  140. /* Define to 1 when the gnulib module getrusage should be tested. */
  141. #define GNULIB_TEST_GETRUSAGE 1
  142. /* Define to 1 when the gnulib module gettimeofday should be tested. */
  143. #define GNULIB_TEST_GETTIMEOFDAY 1
  144. /* Define to 1 when the gnulib module isnan should be tested. */
  145. #define GNULIB_TEST_ISNAN 1
  146. /* Define to 1 when the gnulib module isnand should be tested. */
  147. #define GNULIB_TEST_ISNAND 1
  148. /* Define to 1 when the gnulib module isnanf should be tested. */
  149. #define GNULIB_TEST_ISNANF 1
  150. /* Define to 1 when the gnulib module isnanl should be tested. */
  151. #define GNULIB_TEST_ISNANL 1
  152. /* Define to 1 when the gnulib module iswblank should be tested. */
  153. #define GNULIB_TEST_ISWBLANK 1
  154. /* Define to 1 when the gnulib module iswdigit should be tested. */
  155. #define GNULIB_TEST_ISWDIGIT 1
  156. /* Define to 1 when the gnulib module iswxdigit should be tested. */
  157. #define GNULIB_TEST_ISWXDIGIT 1
  158. /* Define to 1 when the gnulib module ldexpl should be tested. */
  159. #define GNULIB_TEST_LDEXPL 1
  160. /* Define to 1 when the gnulib module lstat should be tested. */
  161. /* #undef GNULIB_TEST_LSTAT */
  162. /* Define to 1 when the gnulib module malloc-posix should be tested. */
  163. #define GNULIB_TEST_MALLOC_POSIX 1
  164. /* Define to 1 when the gnulib module mbrtowc should be tested. */
  165. #define GNULIB_TEST_MBRTOWC 1
  166. /* Define to 1 when the gnulib module mbsinit should be tested. */
  167. #define GNULIB_TEST_MBSINIT 1
  168. /* Define to 1 when the gnulib module memchr should be tested. */
  169. #define GNULIB_TEST_MEMCHR 1
  170. /* Define to 1 when the gnulib module obstack-printf should be tested. */
  171. #define GNULIB_TEST_OBSTACK_PRINTF 1
  172. /* Define to 1 when the gnulib module open should be tested. */
  173. #define GNULIB_TEST_OPEN 1
  174. /* Define to 1 when the gnulib module perror should be tested. */
  175. #define GNULIB_TEST_PERROR 1
  176. /* Define to 1 when the gnulib module pipe2 should be tested. */
  177. #define GNULIB_TEST_PIPE2 1
  178. /* Define to 1 when the gnulib module posix_spawnattr_destroy should be
  179. tested. */
  180. #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1
  181. /* Define to 1 when the gnulib module posix_spawnattr_init should be tested.
  182. */
  183. #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1
  184. /* Define to 1 when the gnulib module posix_spawnattr_setflags should be
  185. tested. */
  186. #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1
  187. /* Define to 1 when the gnulib module posix_spawnattr_setsigmask should be
  188. tested. */
  189. #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1
  190. /* Define to 1 when the gnulib module posix_spawnp should be tested. */
  191. #define GNULIB_TEST_POSIX_SPAWNP 1
  192. /* Define to 1 when the gnulib module posix_spawn_file_actions_addclose should
  193. be tested. */
  194. #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1
  195. /* Define to 1 when the gnulib module posix_spawn_file_actions_adddup2 should
  196. be tested. */
  197. #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1
  198. /* Define to 1 when the gnulib module posix_spawn_file_actions_addopen should
  199. be tested. */
  200. #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1
  201. /* Define to 1 when the gnulib module posix_spawn_file_actions_destroy should
  202. be tested. */
  203. #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1
  204. /* Define to 1 when the gnulib module posix_spawn_file_actions_init should be
  205. tested. */
  206. #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1
  207. /* Define to 1 when the gnulib module printf-posix should be tested. */
  208. #define GNULIB_TEST_PRINTF_POSIX 1
  209. /* Define to 1 when the gnulib module raise should be tested. */
  210. #define GNULIB_TEST_RAISE 1
  211. /* Define to 1 when the gnulib module rawmemchr should be tested. */
  212. /* #undef GNULIB_TEST_RAWMEMCHR */
  213. /* Define to 1 when the gnulib module readlink should be tested. */
  214. #define GNULIB_TEST_READLINK 1
  215. /* Define to 1 when the gnulib module realloc-posix should be tested. */
  216. #define GNULIB_TEST_REALLOC_POSIX 1
  217. /* Define to 1 when the gnulib module realpath should be tested. */
  218. #define GNULIB_TEST_REALPATH 1
  219. /* Define to 1 when the gnulib module rename should be tested. */
  220. #define GNULIB_TEST_RENAME 1
  221. /* Define to 1 when the gnulib module rmdir should be tested. */
  222. /* #undef GNULIB_TEST_RMDIR */
  223. /* Define to 1 when the gnulib module setlocale_null should be tested. */
  224. #define GNULIB_TEST_SETLOCALE_NULL 1
  225. /* Define to 1 when the gnulib module sigaction should be tested. */
  226. #define GNULIB_TEST_SIGACTION 1
  227. /* Define to 1 when the gnulib module signbit should be tested. */
  228. #define GNULIB_TEST_SIGNBIT 1
  229. /* Define to 1 when the gnulib module sigprocmask should be tested. */
  230. #define GNULIB_TEST_SIGPROCMASK 1
  231. /* Define to 1 when the gnulib module snprintf should be tested. */
  232. #define GNULIB_TEST_SNPRINTF 1
  233. /* Define to 1 when the gnulib module sprintf-posix should be tested. */
  234. #define GNULIB_TEST_SPRINTF_POSIX 1
  235. /* Define to 1 when the gnulib module stat should be tested. */
  236. /* #undef GNULIB_TEST_STAT */
  237. /* Define to 1 when the gnulib module stpcpy should be tested. */
  238. #define GNULIB_TEST_STPCPY 1
  239. /* Define to 1 when the gnulib module stpncpy should be tested. */
  240. #define GNULIB_TEST_STPNCPY 1
  241. /* Define to 1 when the gnulib module strchrnul should be tested. */
  242. /* #undef GNULIB_TEST_STRCHRNUL */
  243. /* Define to 1 when the gnulib module strdup should be tested. */
  244. #define GNULIB_TEST_STRDUP 1
  245. /* Define to 1 when the gnulib module strerror should be tested. */
  246. #define GNULIB_TEST_STRERROR 1
  247. /* Define to 1 when the gnulib module strerror_r should be tested. */
  248. /* #undef GNULIB_TEST_STRERROR_R */
  249. /* Define to 1 when the gnulib module strndup should be tested. */
  250. #define GNULIB_TEST_STRNDUP 1
  251. /* Define to 1 when the gnulib module strnlen should be tested. */
  252. /* #undef GNULIB_TEST_STRNLEN */
  253. /* Define to 1 when the gnulib module strverscmp should be tested. */
  254. #define GNULIB_TEST_STRVERSCMP 1
  255. /* Define to 1 when the gnulib module unlink should be tested. */
  256. #define GNULIB_TEST_UNLINK 1
  257. /* Define to 1 when the gnulib module unsetenv should be tested. */
  258. #define GNULIB_TEST_UNSETENV 1
  259. /* Define to 1 when the gnulib module vasprintf should be tested. */
  260. #define GNULIB_TEST_VASPRINTF 1
  261. /* Define to 1 when the gnulib module vfprintf-posix should be tested. */
  262. #define GNULIB_TEST_VFPRINTF_POSIX 1
  263. /* Define to 1 when the gnulib module vsnprintf should be tested. */
  264. #define GNULIB_TEST_VSNPRINTF 1
  265. /* Define to 1 when the gnulib module vsprintf-posix should be tested. */
  266. #define GNULIB_TEST_VSPRINTF_POSIX 1
  267. /* Define to 1 when the gnulib module waitpid should be tested. */
  268. #define GNULIB_TEST_WAITPID 1
  269. /* Define to 1 when the gnulib module wcwidth should be tested. */
  270. #define GNULIB_TEST_WCWIDTH 1
  271. /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
  272. whether the gnulib module unistr/u8-mbtoucr shall be considered present. */
  273. #define GNULIB_UNISTR_U8_MBTOUCR 1
  274. /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
  275. whether the gnulib module unistr/u8-uctomb shall be considered present. */
  276. #define GNULIB_UNISTR_U8_UCTOMB 1
  277. /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
  278. whether the gnulib module xalloc shall be considered present. */
  279. #define GNULIB_XALLOC 1
  280. /* Define to a C preprocessor expression that evaluates to 1 or 0, depending
  281. whether the gnulib module xalloc-die shall be considered present. */
  282. #define GNULIB_XALLOC_DIE 1
  283. /* Define if your system defines TIOCGWINSZ in sys/ioctl.h. */
  284. #define GWINSZ_IN_SYS_IOCTL 1
  285. /* Define to 1 if you have 'alloca' after including <alloca.h>, a header that
  286. may be supplied by this distribution. */
  287. #define HAVE_ALLOCA 1
  288. /* Define to 1 if <alloca.h> works. */
  289. #define HAVE_ALLOCA_H 1
  290. /* Define if you have an arithmetic hrtime_t type. */
  291. /* #undef HAVE_ARITHMETIC_HRTIME_T */
  292. /* Define to 1 if you have the <bp-sym.h> header file. */
  293. /* #undef HAVE_BP_SYM_H */
  294. /* Define if the 'calloc' function is POSIX compliant. */
  295. #define HAVE_CALLOC_POSIX 1
  296. /* Define to 1 if you have the `canonicalize_file_name' function. */
  297. #define HAVE_CANONICALIZE_FILE_NAME 1
  298. /* Define to 1 if you have the `catgets' function. */
  299. #define HAVE_CATGETS 1
  300. /* Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the
  301. CoreFoundation framework. */
  302. /* #undef HAVE_CFLOCALECOPYCURRENT */
  303. /* Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in
  304. the CoreFoundation framework. */
  305. /* #undef HAVE_CFPREFERENCESCOPYAPPVALUE */
  306. /* Define to 1 if you have the `clock_gettime' function. */
  307. #define HAVE_CLOCK_GETTIME 1
  308. /* Define to 1 if you have the `clock_settime' function. */
  309. #define HAVE_CLOCK_SETTIME 1
  310. /* Define to 1 if you have the `confstr' function. */
  311. /* #undef HAVE_CONFSTR */
  312. /* Define if the copysignf function is declared in <math.h> and available in
  313. libc. */
  314. /* #undef HAVE_COPYSIGNF_IN_LIBC */
  315. /* Define if the copysignl function is declared in <math.h> and available in
  316. libc. */
  317. /* #undef HAVE_COPYSIGNL_IN_LIBC */
  318. /* Define if the copysign function is declared in <math.h> and available in
  319. libc. */
  320. /* #undef HAVE_COPYSIGN_IN_LIBC */
  321. /* Define to 1 if you have the `copy_file_range' function. */
  322. /* #undef HAVE_COPY_FILE_RANGE */
  323. /* Define to 1 if you have the <crtdefs.h> header file. */
  324. /* #undef HAVE_CRTDEFS_H */
  325. /* Define if the GNU dcgettext() function is already present or preinstalled.
  326. */
  327. /* #undef HAVE_DCGETTEXT */
  328. /* Define to 1 if you have the declaration of `alarm', and to 0 if you don't.
  329. */
  330. #define HAVE_DECL_ALARM 1
  331. /* Define to 1 if you have the declaration of `clearerr_unlocked', and to 0 if
  332. you don't. */
  333. #define HAVE_DECL_CLEARERR_UNLOCKED 1
  334. /* Define to 1 if you have the declaration of `copysign', and to 0 if you
  335. don't. */
  336. /* #undef HAVE_DECL_COPYSIGN */
  337. /* Define to 1 if you have the declaration of `copysignf', and to 0 if you
  338. don't. */
  339. /* #undef HAVE_DECL_COPYSIGNF */
  340. /* Define to 1 if you have the declaration of `copysignl', and to 0 if you
  341. don't. */
  342. /* #undef HAVE_DECL_COPYSIGNL */
  343. /* Define to 1 if you have the declaration of `feof_unlocked', and to 0 if you
  344. don't. */
  345. #define HAVE_DECL_FEOF_UNLOCKED 1
  346. /* Define to 1 if you have the declaration of `ferror_unlocked', and to 0 if
  347. you don't. */
  348. #define HAVE_DECL_FERROR_UNLOCKED 1
  349. /* Define to 1 if you have the declaration of `fflush_unlocked', and to 0 if
  350. you don't. */
  351. #define HAVE_DECL_FFLUSH_UNLOCKED 1
  352. /* Define to 1 if you have the declaration of `fgets_unlocked', and to 0 if
  353. you don't. */
  354. #define HAVE_DECL_FGETS_UNLOCKED 1
  355. /* Define to 1 if you have the declaration of `fputc_unlocked', and to 0 if
  356. you don't. */
  357. #define HAVE_DECL_FPUTC_UNLOCKED 1
  358. /* Define to 1 if you have the declaration of `fputs_unlocked', and to 0 if
  359. you don't. */
  360. #define HAVE_DECL_FPUTS_UNLOCKED 1
  361. /* Define to 1 if you have the declaration of `fread_unlocked', and to 0 if
  362. you don't. */
  363. #define HAVE_DECL_FREAD_UNLOCKED 1
  364. /* Define to 1 if you have the declaration of `fwrite_unlocked', and to 0 if
  365. you don't. */
  366. #define HAVE_DECL_FWRITE_UNLOCKED 1
  367. /* Define to 1 if you have the declaration of `getchar_unlocked', and to 0 if
  368. you don't. */
  369. #define HAVE_DECL_GETCHAR_UNLOCKED 1
  370. /* Define to 1 if you have the declaration of `getc_unlocked', and to 0 if you
  371. don't. */
  372. #define HAVE_DECL_GETC_UNLOCKED 1
  373. /* Define to 1 if you have the declaration of `getdelim', and to 0 if you
  374. don't. */
  375. #define HAVE_DECL_GETDELIM 1
  376. /* Define to 1 if you have the declaration of `getdtablesize', and to 0 if you
  377. don't. */
  378. #define HAVE_DECL_GETDTABLESIZE 1
  379. /* Define to 1 if you have the declaration of `gethrtime', and to 0 if you
  380. don't. */
  381. #define HAVE_DECL_GETHRTIME 0
  382. /* Define to 1 if you have the declaration of `getline', and to 0 if you
  383. don't. */
  384. #define HAVE_DECL_GETLINE 1
  385. /* Define to 1 if you have the declaration of `iswblank', and to 0 if you
  386. don't. */
  387. #define HAVE_DECL_ISWBLANK 1
  388. /* Define to 1 if you have the declaration of `mbrtowc', and to 0 if you
  389. don't. */
  390. /* #undef HAVE_DECL_MBRTOWC */
  391. /* Define to 1 if you have the declaration of `mbsinit', and to 0 if you
  392. don't. */
  393. /* #undef HAVE_DECL_MBSINIT */
  394. /* Define to 1 if you have a declaration of mbswidth() in <wchar.h>, and to 0
  395. otherwise. */
  396. #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0
  397. /* Define to 1 if you have the declaration of `obstack_printf', and to 0 if
  398. you don't. */
  399. #define HAVE_DECL_OBSTACK_PRINTF 1
  400. /* Define to 1 if you have the declaration of `program_invocation_name', and
  401. to 0 if you don't. */
  402. #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1
  403. /* Define to 1 if you have the declaration of `program_invocation_short_name',
  404. and to 0 if you don't. */
  405. #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1
  406. /* Define to 1 if you have the declaration of `putchar_unlocked', and to 0 if
  407. you don't. */
  408. #define HAVE_DECL_PUTCHAR_UNLOCKED 1
  409. /* Define to 1 if you have the declaration of `putc_unlocked', and to 0 if you
  410. don't. */
  411. #define HAVE_DECL_PUTC_UNLOCKED 1
  412. /* Define to 1 if you have the declaration of `setenv', and to 0 if you don't.
  413. */
  414. #define HAVE_DECL_SETENV 1
  415. /* Define to 1 if you have the declaration of `snprintf', and to 0 if you
  416. don't. */
  417. #define HAVE_DECL_SNPRINTF 1
  418. /* Define to 1 if you have the declaration of `stpncpy', and to 0 if you
  419. don't. */
  420. #define HAVE_DECL_STPNCPY 1
  421. /* Define to 1 if you have the declaration of `strdup', and to 0 if you don't.
  422. */
  423. #define HAVE_DECL_STRDUP 1
  424. /* Define to 1 if you have the declaration of `strerror_r', and to 0 if you
  425. don't. */
  426. #define HAVE_DECL_STRERROR_R 1
  427. /* Define to 1 if you have the declaration of `strndup', and to 0 if you
  428. don't. */
  429. #define HAVE_DECL_STRNDUP 1
  430. /* Define to 1 if you have the declaration of `strnlen', and to 0 if you
  431. don't. */
  432. #define HAVE_DECL_STRNLEN 1
  433. /* Define to 1 if you have the declaration of `towlower', and to 0 if you
  434. don't. */
  435. /* #undef HAVE_DECL_TOWLOWER */
  436. /* Define to 1 if you have the declaration of `unsetenv', and to 0 if you
  437. don't. */
  438. #define HAVE_DECL_UNSETENV 1
  439. /* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
  440. don't. */
  441. #define HAVE_DECL_VSNPRINTF 1
  442. /* Define to 1 if you have the declaration of `wcwidth', and to 0 if you
  443. don't. */
  444. #define HAVE_DECL_WCWIDTH 1
  445. /* Define to 1 if you have the declaration of `_snprintf', and to 0 if you
  446. don't. */
  447. #define HAVE_DECL__SNPRINTF 0
  448. /* Define to 1 if you have the declaration of `__argv', and to 0 if you don't.
  449. */
  450. #define HAVE_DECL___ARGV 0
  451. /* Define to 1 if you have the declaration of `__fpending', and to 0 if you
  452. don't. */
  453. #define HAVE_DECL___FPENDING 1
  454. /* Define if you have the declaration of environ. */
  455. #define HAVE_ENVIRON_DECL 1
  456. /* Define to 1 if you have the `fcntl' function. */
  457. #define HAVE_FCNTL 1
  458. /* Define to 1 if you have the <features.h> header file. */
  459. #define HAVE_FEATURES_H 1
  460. /* Define to 1 if you have the `flockfile' function. */
  461. /* #undef HAVE_FLOCKFILE */
  462. /* Define if the frexpl function is available in libc. */
  463. #define HAVE_FREXPL_IN_LIBC 1
  464. /* Define if the frexp function is available in libc. */
  465. #define HAVE_FREXP_IN_LIBC 1
  466. /* Define to 1 if you have the `fsync' function. */
  467. #define HAVE_FSYNC 1
  468. /* Define to 1 if you have the `funlockfile' function. */
  469. /* #undef HAVE_FUNLOCKFILE */
  470. /* Define to 1 if you have the `getcwd' function. */
  471. #define HAVE_GETCWD 1
  472. /* Define to 1 if you have the `getdelim' function. */
  473. #define HAVE_GETDELIM 1
  474. /* Define to 1 if you have the `getdtablesize' function. */
  475. #define HAVE_GETDTABLESIZE 1
  476. /* Define to 1 if you have the `getexecname' function. */
  477. /* #undef HAVE_GETEXECNAME */
  478. /* Define to 1 if you have the <getopt.h> header file. */
  479. #define HAVE_GETOPT_H 1
  480. /* Define to 1 if you have the `getopt_long_only' function. */
  481. #define HAVE_GETOPT_LONG_ONLY 1
  482. /* Define to 1 if you have the `getprogname' function. */
  483. /* #undef HAVE_GETPROGNAME */
  484. /* Define to 1 if you have the `getrusage' function. */
  485. #define HAVE_GETRUSAGE 1
  486. /* Define if the GNU gettext() function is already present or preinstalled. */
  487. /* #undef HAVE_GETTEXT */
  488. /* Define to 1 if you have the `gettimeofday' function. */
  489. #define HAVE_GETTIMEOFDAY 1
  490. /* Define if you have the iconv() function and it works. */
  491. #define HAVE_ICONV 1
  492. /* Define to 1 if you have the <iconv.h> header file. */
  493. #define HAVE_ICONV_H 1
  494. /* Define to 1 if the compiler supports one of the keywords 'inline',
  495. '__inline__', '__inline' and effectively inlines functions marked as such.
  496. */
  497. #define HAVE_INLINE 1
  498. /* Define if you have the 'intmax_t' type in <stdint.h> or <inttypes.h>. */
  499. #define HAVE_INTMAX_T 1
  500. /* Define to 1 if you have the <inttypes.h> header file. */
  501. #define HAVE_INTTYPES_H 1
  502. /* Define if <inttypes.h> exists, doesn't clash with <sys/types.h>, and
  503. declares uintmax_t. */
  504. #define HAVE_INTTYPES_H_WITH_UINTMAX 1
  505. /* Define to 1 if you have the `isascii' function. */
  506. #define HAVE_ISASCII 1
  507. /* Define if the isnan(double) function is available in libc. */
  508. #define HAVE_ISNAND_IN_LIBC 1
  509. /* Define if the isnan(float) function is available in libc. */
  510. /* #undef HAVE_ISNANF_IN_LIBC */
  511. /* Define if the isnan(long double) function is available in libc. */
  512. #define HAVE_ISNANL_IN_LIBC 1
  513. /* Define to 1 if you have the `iswblank' function. */
  514. #define HAVE_ISWBLANK 1
  515. /* Define to 1 if you have the `iswcntrl' function. */
  516. #define HAVE_ISWCNTRL 1
  517. /* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
  518. #define HAVE_LANGINFO_CODESET 1
  519. /* Define if the ldexpl() function is available. */
  520. #define HAVE_LDEXPL 1
  521. /* Define if the ldexpl function is available in libc. */
  522. #define HAVE_LDEXPL_IN_LIBC 1
  523. /* Define if the ldexp function is available in libc. */
  524. #define HAVE_LDEXP_IN_LIBC 1
  525. /* Define if you have the libtextstyle library. */
  526. /* #undef HAVE_LIBTEXTSTYLE */
  527. /* Define to 1 if you have the <limits.h> header file. */
  528. #define HAVE_LIMITS_H 1
  529. /* Define to 1 if you have the `link' function. */
  530. #define HAVE_LINK 1
  531. /* Define to 1 if you have the <locale.h> header file. */
  532. #define HAVE_LOCALE_H 1
  533. /* Define to 1 if the system has the type 'long long int'. */
  534. #define HAVE_LONG_LONG_INT 1
  535. /* Define to 1 if you have the `lstat' function. */
  536. #define HAVE_LSTAT 1
  537. /* Define to 1 if you have the <mach-o/dyld.h> header file. */
  538. /* #undef HAVE_MACH_O_DYLD_H */
  539. /* Define to 1 if your system has a GNU libc compatible 'malloc' function, and
  540. to 0 otherwise. */
  541. #define HAVE_MALLOC_GNU 1
  542. /* Define if the 'malloc' function is POSIX compliant. */
  543. #define HAVE_MALLOC_POSIX 1
  544. /* Define to 1 if mmap()'s MAP_ANONYMOUS flag is available after including
  545. config.h and <sys/mman.h>. */
  546. #define HAVE_MAP_ANONYMOUS 1
  547. /* Define to 1 if you have the <math.h> header file. */
  548. #define HAVE_MATH_H 1
  549. /* Define to 1 if you have the `mbrtowc' function. */
  550. #define HAVE_MBRTOWC 1
  551. /* Define to 1 if you have the `mbsinit' function. */
  552. #define HAVE_MBSINIT 1
  553. /* Define to 1 if <wchar.h> declares mbstate_t. */
  554. #define HAVE_MBSTATE_T 1
  555. /* Define to 1 if you have the `microuptime' function. */
  556. /* #undef HAVE_MICROUPTIME */
  557. /* Define to 1 if <limits.h> defines the MIN and MAX macros. */
  558. /* #undef HAVE_MINMAX_IN_LIMITS_H */
  559. /* Define to 1 if <sys/param.h> defines the MIN and MAX macros. */
  560. #define HAVE_MINMAX_IN_SYS_PARAM_H 1
  561. /* Define to 1 if you have the `mprotect' function. */
  562. #define HAVE_MPROTECT 1
  563. /* Define to 1 on MSVC platforms that have the "invalid parameter handler"
  564. concept. */
  565. /* #undef HAVE_MSVC_INVALID_PARAMETER_HANDLER */
  566. /* Define to 1 if you have the `nanouptime' function. */
  567. /* #undef HAVE_NANOUPTIME */
  568. /* Define to 1 if you have the `nl_langinfo' function. */
  569. /* #undef HAVE_NL_LANGINFO */
  570. /* Define to 1 if the system has obstacks that work with any size object. */
  571. /* #undef HAVE_OBSTACK */
  572. /* Define to 1 if you have the `obstack_printf' function. */
  573. #define HAVE_OBSTACK_PRINTF 1
  574. /* Define to 1 if you have the <paths.h> header file. */
  575. /* #undef HAVE_PATHS_H */
  576. /* Define to 1 if you have the `pipe' function. */
  577. #define HAVE_PIPE 1
  578. /* Define to 1 if you have the `pipe2' function. */
  579. #define HAVE_PIPE2 1
  580. /* Define to 1 if you have the `posix_spawn' function. */
  581. #define HAVE_POSIX_SPAWN 1
  582. /* Define to 1 if the system has the type `posix_spawnattr_t'. */
  583. #define HAVE_POSIX_SPAWNATTR_T 1
  584. /* Define to 1 if the system has the type `posix_spawn_file_actions_t'. */
  585. #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1
  586. /* Define if you have the <pthread.h> header and the POSIX threads API. */
  587. #define HAVE_PTHREAD_API 1
  588. /* Define if the <pthread.h> defines PTHREAD_MUTEX_RECURSIVE. */
  589. #define HAVE_PTHREAD_MUTEX_RECURSIVE 1
  590. /* Define if the POSIX multithreading library has read/write locks. */
  591. #define HAVE_PTHREAD_RWLOCK 1
  592. /* Define if the 'pthread_rwlock_rdlock' function prefers a writer to a
  593. reader. */
  594. /* #undef HAVE_PTHREAD_RWLOCK_RDLOCK_PREFER_WRITER */
  595. /* Define to 1 if you have the `raise' function. */
  596. #define HAVE_RAISE 1
  597. /* Define to 1 if you have the `rawmemchr' function. */
  598. /* #undef HAVE_RAWMEMCHR */
  599. /* Define if you have the readline library. */
  600. /* #undef HAVE_READLINE */
  601. /* Define to 1 if you have the <readline/history.h> header file. */
  602. /* #undef HAVE_READLINE_HISTORY_H */
  603. /* Define to 1 if you have the <readline/readline.h> header file. */
  604. /* #undef HAVE_READLINE_READLINE_H */
  605. /* Define to 1 if you have the `readlink' function. */
  606. #define HAVE_READLINK 1
  607. /* Define to 1 if you have the `readlinkat' function. */
  608. #define HAVE_READLINKAT 1
  609. /* Define if the 'realloc' function is POSIX compliant. */
  610. #define HAVE_REALLOC_POSIX 1
  611. /* Define to 1 if you have the `realpath' function. */
  612. #define HAVE_REALPATH 1
  613. /* Define to 1 if 'long double' and 'double' have the same representation. */
  614. /* #undef HAVE_SAME_LONG_DOUBLE_AS_DOUBLE */
  615. /* Define to 1 if you have the <sched.h> header file. */
  616. #define HAVE_SCHED_H 1
  617. /* Define to 1 if you have the `sched_setparam' function. */
  618. /* #undef HAVE_SCHED_SETPARAM */
  619. /* Define to 1 if you have the `sched_setscheduler' function. */
  620. /* #undef HAVE_SCHED_SETSCHEDULER */
  621. /* Define to 1 if you have the <sdkddkver.h> header file. */
  622. /* #undef HAVE_SDKDDKVER_H */
  623. /* Define to 1 if you have the <search.h> header file. */
  624. #define HAVE_SEARCH_H 1
  625. /* Define to 1 if you have the `setdtablesize' function. */
  626. /* #undef HAVE_SETDTABLESIZE */
  627. /* Define to 1 if you have the `setegid' function. */
  628. /* #undef HAVE_SETEGID */
  629. /* Define to 1 if you have the `setenv' function. */
  630. #define HAVE_SETENV 1
  631. /* Define to 1 if you have the `seteuid' function. */
  632. /* #undef HAVE_SETEUID */
  633. /* Define to 1 if you have the `setlocale' function. */
  634. #define HAVE_SETLOCALE 1
  635. /* Define to 1 if you have the `sigaction' function. */
  636. #define HAVE_SIGACTION 1
  637. /* Define to 1 if you have the `sigaltstack' function. */
  638. #define HAVE_SIGALTSTACK 1
  639. /* Define to 1 if the system has the type `siginfo_t'. */
  640. /* #undef HAVE_SIGINFO_T */
  641. /* Define to 1 if you have the `siginterrupt' function. */
  642. #define HAVE_SIGINTERRUPT 1
  643. /* Define to 1 if 'sig_atomic_t' is a signed integer type. */
  644. /* #undef HAVE_SIGNED_SIG_ATOMIC_T */
  645. /* Define to 1 if 'wchar_t' is a signed integer type. */
  646. /* #undef HAVE_SIGNED_WCHAR_T */
  647. /* Define to 1 if 'wint_t' is a signed integer type. */
  648. /* #undef HAVE_SIGNED_WINT_T */
  649. /* Define to 1 if the system has the type `sigset_t'. */
  650. #define HAVE_SIGSET_T 1
  651. /* Define to 1 if the system has the type `sig_atomic_t'. */
  652. #define HAVE_SIG_ATOMIC_T 1
  653. /* Define to 1 if you have the `snprintf' function. */
  654. #define HAVE_SNPRINTF 1
  655. /* Define if the return value of the snprintf function is the number of of
  656. bytes (excluding the terminating NUL) that would have been produced if the
  657. buffer had been large enough. */
  658. #define HAVE_SNPRINTF_RETVAL_C99 1
  659. /* Define if the string produced by the snprintf function is always NUL
  660. terminated. */
  661. #define HAVE_SNPRINTF_TRUNCATION_C99 1
  662. /* Define to 1 if you have the <spawn.h> header file. */
  663. #define HAVE_SPAWN_H 1
  664. /* Define to 1 if you have the <stdint.h> header file. */
  665. #define HAVE_STDINT_H 1
  666. /* Define if <stdint.h> exists, doesn't clash with <sys/types.h>, and declares
  667. uintmax_t. */
  668. #define HAVE_STDINT_H_WITH_UINTMAX 1
  669. /* Define to 1 if you have the <stdio_ext.h> header file. */
  670. #define HAVE_STDIO_EXT_H 1
  671. /* Define to 1 if you have the <stdio.h> header file. */
  672. #define HAVE_STDIO_H 1
  673. /* Define to 1 if you have the <stdlib.h> header file. */
  674. #define HAVE_STDLIB_H 1
  675. /* Define to 1 if you have the `stpcpy' function. */
  676. #define HAVE_STPCPY 1
  677. /* Define if you have the stpncpy() function and it works. */
  678. #define HAVE_STPNCPY 1
  679. /* Define to 1 if you have the `strchrnul' function. */
  680. /* #undef HAVE_STRCHRNUL */
  681. /* Define to 1 if you have the `strerror_r' function. */
  682. #define HAVE_STRERROR_R 1
  683. /* Define to 1 if you have the <strings.h> header file. */
  684. #define HAVE_STRINGS_H 1
  685. /* Define to 1 if you have the <string.h> header file. */
  686. #define HAVE_STRING_H 1
  687. /* Define to 1 if you have the `strndup' function. */
  688. #define HAVE_STRNDUP 1
  689. /* Define to 1 if you have the `strnlen' function. */
  690. #define HAVE_STRNLEN 1
  691. /* Define to 1 if `sa_sigaction' is a member of `struct sigaction'. */
  692. #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1
  693. /* Define to 1 if `st_atimensec' is a member of `struct stat'. */
  694. /* #undef HAVE_STRUCT_STAT_ST_ATIMENSEC */
  695. /* Define to 1 if `st_atimespec.tv_nsec' is a member of `struct stat'. */
  696. /* #undef HAVE_STRUCT_STAT_ST_ATIMESPEC_TV_NSEC */
  697. /* Define to 1 if `st_atim.st__tim.tv_nsec' is a member of `struct stat'. */
  698. /* #undef HAVE_STRUCT_STAT_ST_ATIM_ST__TIM_TV_NSEC */
  699. /* Define to 1 if `st_atim.tv_nsec' is a member of `struct stat'. */
  700. /* #undef HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC */
  701. /* Define to 1 if `st_birthtimensec' is a member of `struct stat'. */
  702. /* #undef HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC */
  703. /* Define to 1 if `st_birthtimespec.tv_nsec' is a member of `struct stat'. */
  704. /* #undef HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC */
  705. /* Define to 1 if `st_birthtim.tv_nsec' is a member of `struct stat'. */
  706. /* #undef HAVE_STRUCT_STAT_ST_BIRTHTIM_TV_NSEC */
  707. /* Define to 1 if the system has the type `struct tms'. */
  708. #define HAVE_STRUCT_TMS 1
  709. /* Define to 1 if you have the `strverscmp' function. */
  710. #define HAVE_STRVERSCMP 1
  711. /* Define to 1 if you have the `symlink' function. */
  712. #define HAVE_SYMLINK 1
  713. /* Define to 1 if you have the <sys/bitypes.h> header file. */
  714. /* #undef HAVE_SYS_BITYPES_H */
  715. /* Define to 1 if you have the <sys/cdefs.h> header file. */
  716. #define HAVE_SYS_CDEFS_H 1
  717. /* Define to 1 if you have the <sys/inttypes.h> header file. */
  718. /* #undef HAVE_SYS_INTTYPES_H */
  719. /* Define to 1 if you have the <sys/ioctl.h> header file. */
  720. #define HAVE_SYS_IOCTL_H 1
  721. /* Define to 1 if you have the <sys/mman.h> header file. */
  722. #define HAVE_SYS_MMAN_H 1
  723. /* Define to 1 if you have the <sys/param.h> header file. */
  724. #define HAVE_SYS_PARAM_H 1
  725. /* Define to 1 if you have the <sys/resource.h> header file. */
  726. #define HAVE_SYS_RESOURCE_H 1
  727. /* Define to 1 if you have the <sys/single_threaded.h> header file. */
  728. #define HAVE_SYS_SINGLE_THREADED_H 1
  729. /* Define to 1 if you have the <sys/socket.h> header file. */
  730. #define HAVE_SYS_SOCKET_H 1
  731. /* Define to 1 if you have the <sys/stat.h> header file. */
  732. #define HAVE_SYS_STAT_H 1
  733. /* Define to 1 if you have the <sys/times.h> header file. */
  734. #define HAVE_SYS_TIMES_H 1
  735. /* Define to 1 if you have the <sys/time.h> header file. */
  736. #define HAVE_SYS_TIME_H 1
  737. /* Define to 1 if you have the <sys/types.h> header file. */
  738. #define HAVE_SYS_TYPES_H 1
  739. /* Define to 1 if you have the <sys/wait.h> header file. */
  740. #define HAVE_SYS_WAIT_H 1
  741. /* Define to 1 if you have the `tcdrain' function. */
  742. #define HAVE_TCDRAIN 1
  743. /* Define to 1 if you have the <termios.h> header file. */
  744. #define HAVE_TERMIOS_H 1
  745. /* Define to 1 if you have the `thrd_create' function. */
  746. /* #undef HAVE_THRD_CREATE */
  747. /* Define to 1 if you have the <threads.h> header file. */
  748. #define HAVE_THREADS_H 1
  749. /* Define to 1 if you have the `towlower' function. */
  750. #define HAVE_TOWLOWER 1
  751. /* Define to 1 if you have the `tsearch' function. */
  752. #define HAVE_TSEARCH 1
  753. /* Define to 1 if you have the <unistd.h> header file. */
  754. #define HAVE_UNISTD_H 1
  755. /* Define to 1 if you have the `unsetenv' function. */
  756. #define HAVE_UNSETENV 1
  757. /* Define to 1 if the system has the type 'unsigned long long int'. */
  758. #define HAVE_UNSIGNED_LONG_LONG_INT 1
  759. /* Define if you have a global __progname variable */
  760. /* #undef HAVE_VAR___PROGNAME */
  761. /* Define to 1 if you have the `vasnprintf' function. */
  762. /* #undef HAVE_VASNPRINTF */
  763. /* Define to 1 if you have the `vasprintf' function. */
  764. #define HAVE_VASPRINTF 1
  765. /* Define to 1 if you have the `vfork' function. */
  766. /* #undef HAVE_VFORK */
  767. /* Define to 1 or 0, depending whether the compiler supports simple visibility
  768. declarations. */
  769. /* #undef HAVE_VISIBILITY */
  770. /* Define to 1 if you have the `vsnprintf' function. */
  771. #define HAVE_VSNPRINTF 1
  772. /* Define to 1 if you have the `waitid' function. */
  773. #define HAVE_WAITID 1
  774. /* Define to 1 if you have the <wchar.h> header file. */
  775. #define HAVE_WCHAR_H 1
  776. /* Define if you have the 'wchar_t' type. */
  777. #define HAVE_WCHAR_T 1
  778. /* Define to 1 if you have the `wcrtomb' function. */
  779. #define HAVE_WCRTOMB 1
  780. /* Define to 1 if you have the `wcslen' function. */
  781. #define HAVE_WCSLEN 1
  782. /* Define to 1 if you have the `wcsnlen' function. */
  783. #define HAVE_WCSNLEN 1
  784. /* Define to 1 if you have the <wctype.h> header file. */
  785. #define HAVE_WCTYPE_H 1
  786. /* Define to 1 if you have the `wcwidth' function. */
  787. #define HAVE_WCWIDTH 1
  788. /* Define to 1 if the compiler and linker support weak declarations of
  789. symbols. */
  790. #define HAVE_WEAK_SYMBOLS 1
  791. /* Define to 1 if you have the <winsock2.h> header file. */
  792. /* #undef HAVE_WINSOCK2_H */
  793. /* Define if you have the 'wint_t' type. */
  794. #define HAVE_WINT_T 1
  795. /* Define to 1 if O_NOATIME works. */
  796. #define HAVE_WORKING_O_NOATIME 1
  797. /* Define to 1 if O_NOFOLLOW works. */
  798. #define HAVE_WORKING_O_NOFOLLOW 1
  799. /* Define to 1 if you have the <xlocale.h> header file. */
  800. /* #undef HAVE_XLOCALE_H */
  801. /* Define to 1 if the system has the type `_Bool'. */
  802. #define HAVE__BOOL 1
  803. /* Define to 1 if you have the `_NSGetExecutablePath' function. */
  804. /* #undef HAVE__NSGETEXECUTABLEPATH */
  805. /* Define to 1 if you have the `_set_invalid_parameter_handler' function. */
  806. /* #undef HAVE__SET_INVALID_PARAMETER_HANDLER */
  807. /* Define to 1 if the compiler supports __builtin_expect,
  808. and to 2 if <builtins.h> does. */
  809. #define HAVE___BUILTIN_EXPECT 1
  810. #ifndef HAVE___BUILTIN_EXPECT
  811. # define __builtin_expect(e, c) (e)
  812. #elif HAVE___BUILTIN_EXPECT == 2
  813. # include <builtins.h>
  814. #endif
  815. /* Define to 1 if you have the `__fseterr' function. */
  816. /* #undef HAVE___FSETERR */
  817. /* Define to 1 if the compiler supports the keyword '__inline'. */
  818. /* #undef HAVE___INLINE */
  819. /* Define to 1 if you have the `__xpg_strerror_r' function. */
  820. #define HAVE___XPG_STRERROR_R 1
  821. /* Define as const if the declaration of iconv() needs const. */
  822. #define ICONV_CONST
  823. /* Define to a symbolic name denoting the flavor of iconv_open()
  824. implementation. */
  825. /* #undef ICONV_FLAVOR */
  826. /* Define to the value of ${prefix}, as a string. */
  827. #define INSTALLPREFIX "/var/empty/bison-3.7.6"
  828. /* Define as the bit index in the word where to find bit 0 of the exponent of
  829. 'long double'. */
  830. /* #undef LDBL_EXPBIT0_BIT */
  831. /* Define as the word index where to find the exponent of 'long double'. */
  832. /* #undef LDBL_EXPBIT0_WORD */
  833. /* Define as the bit index in the word where to find the sign of 'long
  834. double'. */
  835. /* #undef LDBL_SIGNBIT_BIT */
  836. /* Define as the word index where to find the sign of 'long double'. */
  837. /* #undef LDBL_SIGNBIT_WORD */
  838. /* Define to 1 if 'lstat' dereferences a symlink specified with a trailing
  839. slash. */
  840. #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1
  841. /* Define to the GNU M4 executable name. */
  842. #define M4 "/var/empty/gnum4-1.4.19/bin/m4"
  843. /* Define to "-g" if GNU M4 supports -g, otherwise to "". */
  844. #define M4_GNU_OPTION "--gnu"
  845. /* If malloc(0) is != NULL, define this to 1. Otherwise define this to 0. */
  846. #define MALLOC_0_IS_NONNULL 1
  847. /* Define to a substitute value for mmap()'s MAP_ANONYMOUS flag. */
  848. /* #undef MAP_ANONYMOUS */
  849. /* Define if the mbrtowc function does not return (size_t) -2 for empty input.
  850. */
  851. /* #undef MBRTOWC_EMPTY_INPUT_BUG */
  852. /* Define if the mbrtowc function may signal encoding errors in the C locale.
  853. */
  854. #define MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ 1
  855. /* Define if the mbrtowc function has the NULL pwc argument bug. */
  856. /* #undef MBRTOWC_NULL_ARG1_BUG */
  857. /* Define if the mbrtowc function has the NULL string argument bug. */
  858. /* #undef MBRTOWC_NULL_ARG2_BUG */
  859. /* Define if the mbrtowc function does not return 0 for a NUL character. */
  860. /* #undef MBRTOWC_NUL_RETVAL_BUG */
  861. /* Define if the mbrtowc function returns a wrong return value. */
  862. /* #undef MBRTOWC_RETVAL_BUG */
  863. /* Define if the mbrtowc function stores a wide character when reporting
  864. incomplete input. */
  865. /* #undef MBRTOWC_STORES_INCOMPLETE_BUG */
  866. /* Use GNU style printf and scanf. */
  867. #ifndef __USE_MINGW_ANSI_STDIO
  868. # define __USE_MINGW_ANSI_STDIO 1
  869. #endif
  870. /* Define to 1 on musl libc. */
  871. /* #undef MUSL_LIBC */
  872. /* Define to 1 if assertions should be disabled. */
  873. /* #undef NDEBUG */
  874. /* Define if the vasnprintf implementation needs special code for the 'a' and
  875. 'A' directives. */
  876. /* #undef NEED_PRINTF_DIRECTIVE_A */
  877. /* Define if the vasnprintf implementation needs special code for the 'F'
  878. directive. */
  879. /* #undef NEED_PRINTF_DIRECTIVE_F */
  880. /* Define if the vasnprintf implementation needs special code for the 'ls'
  881. directive. */
  882. /* #undef NEED_PRINTF_DIRECTIVE_LS */
  883. /* Define if the vasnprintf implementation needs special code for 'double'
  884. arguments. */
  885. /* #undef NEED_PRINTF_DOUBLE */
  886. /* Define if the vasnprintf implementation needs special code for surviving
  887. out-of-memory conditions. */
  888. /* #undef NEED_PRINTF_ENOMEM */
  889. /* Define if the vasnprintf implementation needs special code for the ' flag.
  890. */
  891. /* #undef NEED_PRINTF_FLAG_GROUPING */
  892. /* Define if the vasnprintf implementation needs special code for the '-'
  893. flag. */
  894. /* #undef NEED_PRINTF_FLAG_LEFTADJUST */
  895. /* Define if the vasnprintf implementation needs special code for the 0 flag.
  896. */
  897. /* #undef NEED_PRINTF_FLAG_ZERO */
  898. /* Define if the vasnprintf implementation needs special code for infinite
  899. 'double' arguments. */
  900. /* #undef NEED_PRINTF_INFINITE_DOUBLE */
  901. /* Define if the vasnprintf implementation needs special code for infinite
  902. 'long double' arguments. */
  903. /* #undef NEED_PRINTF_INFINITE_LONG_DOUBLE */
  904. /* Define if the vasnprintf implementation needs special code for 'long
  905. double' arguments. */
  906. /* #undef NEED_PRINTF_LONG_DOUBLE */
  907. /* Define if the vasnprintf implementation needs special code for supporting
  908. large precisions without arbitrary bounds. */
  909. /* #undef NEED_PRINTF_UNBOUNDED_PRECISION */
  910. /* Define to 1 if open() fails to recognize a trailing slash. */
  911. /* #undef OPEN_TRAILING_SLASH_BUG */
  912. /* Name of package */
  913. #define PACKAGE "bison"
  914. /* Define to the address where bug reports for this package should be sent. */
  915. #define PACKAGE_BUGREPORT "bug-bison@gnu.org"
  916. /* The copyright year for this package */
  917. #define PACKAGE_COPYRIGHT_YEAR 2021
  918. /* Define to the full name of this package. */
  919. #define PACKAGE_NAME "GNU Bison"
  920. /* Define to the full name and version of this package. */
  921. #define PACKAGE_STRING "GNU Bison 3.7.6"
  922. /* Define to the one symbol short name of this package. */
  923. #define PACKAGE_TARNAME "bison"
  924. /* Define to the home page for this package. */
  925. #define PACKAGE_URL "https://www.gnu.org/software/bison/"
  926. /* Define to the version of this package. */
  927. #define PACKAGE_VERSION "3.7.6"
  928. /* Define to the type that is the result of default argument promotions of
  929. type mode_t. */
  930. #define PROMOTED_MODE_T mode_t
  931. /* Define if the pthread_in_use() detection is hard. */
  932. /* #undef PTHREAD_IN_USE_DETECTION_HARD */
  933. /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
  934. 'ptrdiff_t'. */
  935. /* #undef PTRDIFF_T_SUFFIX */
  936. /* Define to 1 if readlink fails to recognize a trailing slash. */
  937. /* #undef READLINK_TRAILING_SLASH_BUG */
  938. /* Define if rename does not work when the destination file exists, as on
  939. Cygwin 1.5 or Windows. */
  940. /* #undef RENAME_DEST_EXISTS_BUG */
  941. /* Define if rename fails to leave hard links alone, as on NetBSD 1.6 or
  942. Cygwin 1.5. */
  943. /* #undef RENAME_HARD_LINK_BUG */
  944. /* Define if rename does not correctly handle slashes on the destination
  945. argument, such as on Solaris 11 or NetBSD 1.6. */
  946. /* #undef RENAME_TRAILING_SLASH_DEST_BUG */
  947. /* Define if rename does not correctly handle slashes on the source argument,
  948. such as on Solaris 9 or cygwin 1.5. */
  949. /* #undef RENAME_TRAILING_SLASH_SOURCE_BUG */
  950. /* Define if fprintf is overridden by a POSIX compliant gnulib implementation.
  951. */
  952. #define REPLACE_FPRINTF_POSIX 1
  953. /* Define to 1 if stat needs help when passed a file name with a trailing
  954. slash */
  955. /* #undef REPLACE_FUNC_STAT_FILE */
  956. /* Define if gnulib uses its own posix_spawn and posix_spawnp functions. */
  957. /* #undef REPLACE_POSIX_SPAWN */
  958. /* Define if printf is overridden by a POSIX compliant gnulib implementation.
  959. */
  960. #define REPLACE_PRINTF_POSIX 1
  961. /* Define to 1 if strerror(0) does not return a message implying success. */
  962. /* #undef REPLACE_STRERROR_0 */
  963. /* Define if vasnprintf exists but is overridden by gnulib. */
  964. /* #undef REPLACE_VASNPRINTF */
  965. /* Define if vfprintf is overridden by a POSIX compliant gnulib
  966. implementation. */
  967. #define REPLACE_VFPRINTF_POSIX 1
  968. /* Define to 1 if setlocale (LC_ALL, NULL) is multithread-safe. */
  969. #define SETLOCALE_NULL_ALL_MTSAFE 1
  970. /* Define to 1 if setlocale (category, NULL) is multithread-safe. */
  971. #define SETLOCALE_NULL_ONE_MTSAFE 1
  972. /* File name of the Bourne shell. */
  973. #if defined __CYGWIN__ || defined __ANDROID__
  974. /* Omit the directory part because
  975. - For 32-bit Cygwin programs in a 64-bit Cygwin environment, the Cygwin
  976. mounts are not visible.
  977. - On Android, /bin/sh does not exist. It's /system/bin/sh instead. */
  978. # define BOURNE_SHELL "sh"
  979. #else
  980. # define BOURNE_SHELL "/bin/sh"
  981. #endif
  982. /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
  983. 'sig_atomic_t'. */
  984. /* #undef SIG_ATOMIC_T_SUFFIX */
  985. /* Define as the maximum value of type 'size_t', if the system doesn't define
  986. it. */
  987. #ifndef SIZE_MAX
  988. /* # undef SIZE_MAX */
  989. #endif
  990. /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
  991. 'size_t'. */
  992. /* #undef SIZE_T_SUFFIX */
  993. /* If using the C implementation of alloca, define if you know the
  994. direction of stack growth for your system; otherwise it will be
  995. automatically deduced at runtime.
  996. STACK_DIRECTION > 0 => grows toward higher addresses
  997. STACK_DIRECTION < 0 => grows toward lower addresses
  998. STACK_DIRECTION = 0 => direction of growth unknown */
  999. /* #undef STACK_DIRECTION */
  1000. /* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
  1001. /* #undef STAT_MACROS_BROKEN */
  1002. /* Define to 1 if all of the C90 standard headers exist (not just the ones
  1003. required in a freestanding environment). This macro is provided for
  1004. backward compatibility; new code need not use it. */
  1005. #define STDC_HEADERS 1
  1006. /* Define to 1 if strerror_r returns char *. */
  1007. #define STRERROR_R_CHAR_P 1
  1008. /* Define to 1 if the type of the st_atim member of a struct stat is struct
  1009. timespec. */
  1010. /* #undef TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC */
  1011. /* Define to 1 if unlink() on a parent directory may succeed */
  1012. /* #undef UNLINK_PARENT_BUG */
  1013. /* Define to the prefix of C symbols at the assembler and linker level, either
  1014. an underscore or empty. */
  1015. #define USER_LABEL_PREFIX
  1016. /* Define if the combination of the ISO C and POSIX multithreading APIs can be
  1017. used. */
  1018. /* #undef USE_ISOC_AND_POSIX_THREADS */
  1019. /* Define if the ISO C multithreading library can be used. */
  1020. /* #undef USE_ISOC_THREADS */
  1021. /* Define if the POSIX multithreading library can be used. */
  1022. #define USE_POSIX_THREADS 1
  1023. /* Define if references to the POSIX multithreading library should be made
  1024. weak. */
  1025. #define USE_POSIX_THREADS_WEAK 1
  1026. /* Enable extensions on AIX 3, Interix. */
  1027. #ifndef _ALL_SOURCE
  1028. # define _ALL_SOURCE 1
  1029. #endif
  1030. /* Enable general extensions on macOS. */
  1031. #ifndef _DARWIN_C_SOURCE
  1032. # define _DARWIN_C_SOURCE 1
  1033. #endif
  1034. /* Enable GNU extensions on systems that have them. */
  1035. #ifndef _GNU_SOURCE
  1036. # define _GNU_SOURCE 1
  1037. #endif
  1038. /* Enable NetBSD extensions on NetBSD. */
  1039. #ifndef _NETBSD_SOURCE
  1040. # define _NETBSD_SOURCE 1
  1041. #endif
  1042. /* Enable OpenBSD extensions on NetBSD. */
  1043. #ifndef _OPENBSD_SOURCE
  1044. # define _OPENBSD_SOURCE 1
  1045. #endif
  1046. /* Enable threading extensions on Solaris. */
  1047. #ifndef _POSIX_PTHREAD_SEMANTICS
  1048. # define _POSIX_PTHREAD_SEMANTICS 1
  1049. #endif
  1050. /* Enable extensions specified by ISO/IEC TS 18661-5:2014. */
  1051. #ifndef __STDC_WANT_IEC_60559_ATTRIBS_EXT__
  1052. # define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1
  1053. #endif
  1054. /* Enable extensions specified by ISO/IEC TS 18661-1:2014. */
  1055. #ifndef __STDC_WANT_IEC_60559_BFP_EXT__
  1056. # define __STDC_WANT_IEC_60559_BFP_EXT__ 1
  1057. #endif
  1058. /* Enable extensions specified by ISO/IEC TS 18661-2:2015. */
  1059. #ifndef __STDC_WANT_IEC_60559_DFP_EXT__
  1060. # define __STDC_WANT_IEC_60559_DFP_EXT__ 1
  1061. #endif
  1062. /* Enable extensions specified by ISO/IEC TS 18661-4:2015. */
  1063. #ifndef __STDC_WANT_IEC_60559_FUNCS_EXT__
  1064. # define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1
  1065. #endif
  1066. /* Enable extensions specified by ISO/IEC TS 18661-3:2015. */
  1067. #ifndef __STDC_WANT_IEC_60559_TYPES_EXT__
  1068. # define __STDC_WANT_IEC_60559_TYPES_EXT__ 1
  1069. #endif
  1070. /* Enable extensions specified by ISO/IEC TR 24731-2:2010. */
  1071. #ifndef __STDC_WANT_LIB_EXT2__
  1072. # define __STDC_WANT_LIB_EXT2__ 1
  1073. #endif
  1074. /* Enable extensions specified by ISO/IEC 24747:2009. */
  1075. #ifndef __STDC_WANT_MATH_SPEC_FUNCS__
  1076. # define __STDC_WANT_MATH_SPEC_FUNCS__ 1
  1077. #endif
  1078. /* Enable extensions on HP NonStop. */
  1079. #ifndef _TANDEM_SOURCE
  1080. # define _TANDEM_SOURCE 1
  1081. #endif
  1082. /* Enable X/Open extensions if necessary. HP-UX 11.11 defines
  1083. mbstate_t only if _XOPEN_SOURCE is defined to 500, regardless of
  1084. whether compiling with -Ae or -D_HPUX_SOURCE=1. */
  1085. #ifndef _XOPEN_SOURCE
  1086. /* # undef _XOPEN_SOURCE */
  1087. #endif
  1088. /* Enable X/Open compliant socket functions that do not require linking
  1089. with -lxnet on HP-UX 11.11. */
  1090. #ifndef _HPUX_ALT_XOPEN_SOCKET_API
  1091. # define _HPUX_ALT_XOPEN_SOCKET_API 1
  1092. #endif
  1093. /* Enable general extensions on Solaris. */
  1094. #ifndef __EXTENSIONS__
  1095. # define __EXTENSIONS__ 1
  1096. #endif
  1097. /* Define to 1 if you want getc etc. to use unlocked I/O if available.
  1098. Unlocked I/O can improve performance in unithreaded apps, but it is not
  1099. safe for multithreaded apps. */
  1100. #define USE_UNLOCKED_IO 1
  1101. /* Define if the native Windows multithreading API can be used. */
  1102. /* #undef USE_WINDOWS_THREADS */
  1103. /* Version number of package */
  1104. #define VERSION "3.7.6"
  1105. /* Define to 1 if unsetenv returns void instead of int. */
  1106. /* #undef VOID_UNSETENV */
  1107. /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
  1108. 'wchar_t'. */
  1109. /* #undef WCHAR_T_SUFFIX */
  1110. /* Define if sys/ptem.h is required for struct winsize. */
  1111. /* #undef WINSIZE_IN_PTEM */
  1112. /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type
  1113. 'wint_t'. */
  1114. /* #undef WINT_T_SUFFIX */
  1115. /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
  1116. significant byte first (like Motorola and SPARC, unlike Intel). */
  1117. #if defined AC_APPLE_UNIVERSAL_BUILD
  1118. # if defined __BIG_ENDIAN__
  1119. # define WORDS_BIGENDIAN 1
  1120. # endif
  1121. #else
  1122. # ifndef WORDS_BIGENDIAN
  1123. /* # undef WORDS_BIGENDIAN */
  1124. # endif
  1125. #endif
  1126. /* Define to 1 to internationalize bison runtime messages. */
  1127. /* #undef YYENABLE_NLS */
  1128. /* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a
  1129. `char[]'. */
  1130. /* #undef YYTEXT_POINTER */
  1131. /* Number of bits in a file offset, on hosts where this is settable. */
  1132. /* #undef _FILE_OFFSET_BITS */
  1133. /* True if the compiler says it groks GNU C version MAJOR.MINOR. */
  1134. #if defined __GNUC__ && defined __GNUC_MINOR__
  1135. # define _GL_GNUC_PREREQ(major, minor) \
  1136. ((major) < __GNUC__ + ((minor) <= __GNUC_MINOR__))
  1137. #else
  1138. # define _GL_GNUC_PREREQ(major, minor) 0
  1139. #endif
  1140. /* Define for large files, on AIX-style hosts. */
  1141. /* #undef _LARGE_FILES */
  1142. /* Define to 1 on Solaris. */
  1143. /* #undef _LCONV_C99 */
  1144. /* Define to 1 if on MINIX. */
  1145. /* #undef _MINIX */
  1146. /* Define to 1 to make NetBSD features available. MINIX 3 needs this. */
  1147. #define _NETBSD_SOURCE 1
  1148. /* The _Noreturn keyword of C11. */
  1149. #ifndef _Noreturn
  1150. # if (defined __cplusplus \
  1151. && ((201103 <= __cplusplus && !(__GNUC__ == 4 && __GNUC_MINOR__ == 7)) \
  1152. || (defined _MSC_VER && 1900 <= _MSC_VER)) \
  1153. && 0)
  1154. /* [[noreturn]] is not practically usable, because with it the syntax
  1155. extern _Noreturn void func (...);
  1156. would not be valid; such a declaration would only be valid with 'extern'
  1157. and '_Noreturn' swapped, or without the 'extern' keyword. However, some
  1158. AIX system header files and several gnulib header files use precisely
  1159. this syntax with 'extern'. */
  1160. # define _Noreturn [[noreturn]]
  1161. # elif ((!defined __cplusplus || defined __clang__) \
  1162. && (201112 <= (defined __STDC_VERSION__ ? __STDC_VERSION__ : 0) \
  1163. || _GL_GNUC_PREREQ (4, 7) \
  1164. || (defined __apple_build_version__ \
  1165. ? 6000000 <= __apple_build_version__ \
  1166. : 3 < __clang_major__ + (5 <= __clang_minor__))))
  1167. /* _Noreturn works as-is. */
  1168. # elif _GL_GNUC_PREREQ (2, 8) || defined __clang__ || 0x5110 <= __SUNPRO_C
  1169. # define _Noreturn __attribute__ ((__noreturn__))
  1170. # elif 1200 <= (defined _MSC_VER ? _MSC_VER : 0)
  1171. # define _Noreturn __declspec (noreturn)
  1172. # else
  1173. # define _Noreturn
  1174. # endif
  1175. #endif
  1176. /* Define to 2 if the system does not provide POSIX.1 features except with
  1177. this defined. */
  1178. /* #undef _POSIX_1_SOURCE */
  1179. /* Define to 1 if you need to in order for 'stat' and other things to work. */
  1180. /* #undef _POSIX_SOURCE */
  1181. /* For standard stat data types on VMS. */
  1182. #define _USE_STD_STAT 1
  1183. /* Define to rpl_ if the getopt replacement functions and variables should be
  1184. used. */
  1185. /* #undef __GETOPT_PREFIX */
  1186. /* Define to 1 if the system <stdint.h> predates C++11. */
  1187. /* #undef __STDC_CONSTANT_MACROS */
  1188. /* Define to 1 if the system <stdint.h> predates C++11. */
  1189. /* #undef __STDC_LIMIT_MACROS */
  1190. /* The _GL_ASYNC_SAFE marker should be attached to functions that are
  1191. signal handlers (for signals other than SIGABRT, SIGPIPE) or can be
  1192. invoked from such signal handlers. Such functions have some restrictions:
  1193. * All functions that it calls should be marked _GL_ASYNC_SAFE as well,
  1194. or should be listed as async-signal-safe in POSIX
  1195. <https://pubs.opengroup.org/onlinepubs/9699919799/functions/V2_chap02.html#tag_15_04>
  1196. section 2.4.3. Note that malloc(), sprintf(), and fwrite(), in
  1197. particular, are NOT async-signal-safe.
  1198. * All memory locations (variables and struct fields) that these functions
  1199. access must be marked 'volatile'. This holds for both read and write
  1200. accesses. Otherwise the compiler might optimize away stores to and
  1201. reads from such locations that occur in the program, depending on its
  1202. data flow analysis. For example, when the program contains a loop
  1203. that is intended to inspect a variable set from within a signal handler
  1204. while (!signal_occurred)
  1205. ;
  1206. the compiler is allowed to transform this into an endless loop if the
  1207. variable 'signal_occurred' is not declared 'volatile'.
  1208. Additionally, recall that:
  1209. * A signal handler should not modify errno (except if it is a handler
  1210. for a fatal signal and ends by raising the same signal again, thus
  1211. provoking the termination of the process). If it invokes a function
  1212. that may clobber errno, it needs to save and restore the value of
  1213. errno. */
  1214. #define _GL_ASYNC_SAFE
  1215. /* Attributes. */
  1216. #ifdef __has_attribute
  1217. # define _GL_HAS_ATTRIBUTE(attr) __has_attribute (__##attr##__)
  1218. #else
  1219. # define _GL_HAS_ATTRIBUTE(attr) _GL_ATTR_##attr
  1220. # define _GL_ATTR_alloc_size _GL_GNUC_PREREQ (4, 3)
  1221. # define _GL_ATTR_always_inline _GL_GNUC_PREREQ (3, 2)
  1222. # define _GL_ATTR_artificial _GL_GNUC_PREREQ (4, 3)
  1223. # define _GL_ATTR_cold _GL_GNUC_PREREQ (4, 3)
  1224. # define _GL_ATTR_const _GL_GNUC_PREREQ (2, 95)
  1225. # define _GL_ATTR_deprecated _GL_GNUC_PREREQ (3, 1)
  1226. # define _GL_ATTR_diagnose_if 0
  1227. # define _GL_ATTR_error _GL_GNUC_PREREQ (4, 3)
  1228. # define _GL_ATTR_externally_visible _GL_GNUC_PREREQ (4, 1)
  1229. # define _GL_ATTR_fallthrough _GL_GNUC_PREREQ (7, 0)
  1230. # define _GL_ATTR_format _GL_GNUC_PREREQ (2, 7)
  1231. # define _GL_ATTR_leaf _GL_GNUC_PREREQ (4, 6)
  1232. # ifdef _ICC
  1233. # define _GL_ATTR_may_alias 0
  1234. # else
  1235. # define _GL_ATTR_may_alias _GL_GNUC_PREREQ (3, 3)
  1236. # endif
  1237. # define _GL_ATTR_malloc _GL_GNUC_PREREQ (3, 0)
  1238. # define _GL_ATTR_noinline _GL_GNUC_PREREQ (3, 1)
  1239. # define _GL_ATTR_nonnull _GL_GNUC_PREREQ (3, 3)
  1240. # define _GL_ATTR_nonstring _GL_GNUC_PREREQ (8, 0)
  1241. # define _GL_ATTR_nothrow _GL_GNUC_PREREQ (3, 3)
  1242. # define _GL_ATTR_packed _GL_GNUC_PREREQ (2, 7)
  1243. # define _GL_ATTR_pure _GL_GNUC_PREREQ (2, 96)
  1244. # define _GL_ATTR_returns_nonnull _GL_GNUC_PREREQ (4, 9)
  1245. # define _GL_ATTR_sentinel _GL_GNUC_PREREQ (4, 0)
  1246. # define _GL_ATTR_unused _GL_GNUC_PREREQ (2, 7)
  1247. # define _GL_ATTR_warn_unused_result _GL_GNUC_PREREQ (3, 4)
  1248. #endif
  1249. #if _GL_HAS_ATTRIBUTE (alloc_size)
  1250. # define _GL_ATTRIBUTE_ALLOC_SIZE(args) __attribute__ ((__alloc_size__ args))
  1251. #else
  1252. # define _GL_ATTRIBUTE_ALLOC_SIZE(args)
  1253. #endif
  1254. #if _GL_HAS_ATTRIBUTE (always_inline)
  1255. # define _GL_ATTRIBUTE_ALWAYS_INLINE __attribute__ ((__always_inline__))
  1256. #else
  1257. # define _GL_ATTRIBUTE_ALWAYS_INLINE
  1258. #endif
  1259. #if _GL_HAS_ATTRIBUTE (artificial)
  1260. # define _GL_ATTRIBUTE_ARTIFICIAL __attribute__ ((__artificial__))
  1261. #else
  1262. # define _GL_ATTRIBUTE_ARTIFICIAL
  1263. #endif
  1264. /* Avoid __attribute__ ((cold)) on MinGW; see thread starting at
  1265. <https://lists.gnu.org/r/emacs-devel/2019-04/msg01152.html>.
  1266. Also, Oracle Studio 12.6 requires 'cold' not '__cold__'. */
  1267. #if _GL_HAS_ATTRIBUTE (cold) && !defined __MINGW32__
  1268. # ifndef __SUNPRO_C
  1269. # define _GL_ATTRIBUTE_COLD __attribute__ ((__cold__))
  1270. # else
  1271. # define _GL_ATTRIBUTE_COLD __attribute__ ((cold))
  1272. # endif
  1273. #else
  1274. # define _GL_ATTRIBUTE_COLD
  1275. #endif
  1276. #if _GL_HAS_ATTRIBUTE (const)
  1277. # define _GL_ATTRIBUTE_CONST __attribute__ ((__const__))
  1278. #else
  1279. # define _GL_ATTRIBUTE_CONST
  1280. #endif
  1281. #if 201710L < __STDC_VERSION__
  1282. # define _GL_ATTRIBUTE_DEPRECATED [[__deprecated__]]
  1283. #elif _GL_HAS_ATTRIBUTE (deprecated)
  1284. # define _GL_ATTRIBUTE_DEPRECATED __attribute__ ((__deprecated__))
  1285. #else
  1286. # define _GL_ATTRIBUTE_DEPRECATED
  1287. #endif
  1288. #if _GL_HAS_ATTRIBUTE (error)
  1289. # define _GL_ATTRIBUTE_ERROR(msg) __attribute__ ((__error__ (msg)))
  1290. # define _GL_ATTRIBUTE_WARNING(msg) __attribute__ ((__warning__ (msg)))
  1291. #elif _GL_HAS_ATTRIBUTE (diagnose_if)
  1292. # define _GL_ATTRIBUTE_ERROR(msg) __attribute__ ((__diagnose_if__ (1, msg, "error")))
  1293. # define _GL_ATTRIBUTE_WARNING(msg) __attribute__ ((__diagnose_if__ (1, msg, "warning")))
  1294. #else
  1295. # define _GL_ATTRIBUTE_ERROR(msg)
  1296. # define _GL_ATTRIBUTE_WARNING(msg)
  1297. #endif
  1298. #if _GL_HAS_ATTRIBUTE (externally_visible)
  1299. # define _GL_ATTRIBUTE_EXTERNALLY_VISIBLE __attribute__ ((externally_visible))
  1300. #else
  1301. # define _GL_ATTRIBUTE_EXTERNALLY_VISIBLE
  1302. #endif
  1303. /* FALLTHROUGH is special, because it always expands to something. */
  1304. #if 201710L < __STDC_VERSION__
  1305. # define _GL_ATTRIBUTE_FALLTHROUGH [[__fallthrough__]]
  1306. #elif _GL_HAS_ATTRIBUTE (fallthrough)
  1307. # define _GL_ATTRIBUTE_FALLTHROUGH __attribute__ ((__fallthrough__))
  1308. #else
  1309. # define _GL_ATTRIBUTE_FALLTHROUGH ((void) 0)
  1310. #endif
  1311. #if _GL_HAS_ATTRIBUTE (format)
  1312. # define _GL_ATTRIBUTE_FORMAT(spec) __attribute__ ((__format__ spec))
  1313. #else
  1314. # define _GL_ATTRIBUTE_FORMAT(spec)
  1315. #endif
  1316. #if _GL_HAS_ATTRIBUTE (leaf)
  1317. # define _GL_ATTRIBUTE_LEAF __attribute__ ((__leaf__))
  1318. #else
  1319. # define _GL_ATTRIBUTE_LEAF
  1320. #endif
  1321. /* Oracle Studio 12.6 mishandles may_alias despite __has_attribute OK. */
  1322. #if _GL_HAS_ATTRIBUTE (may_alias) && !defined __SUNPRO_C
  1323. # define _GL_ATTRIBUTE_MAY_ALIAS __attribute__ ((__may_alias__))
  1324. #else
  1325. # define _GL_ATTRIBUTE_MAY_ALIAS
  1326. #endif
  1327. #if 201710L < __STDC_VERSION__
  1328. # define _GL_ATTRIBUTE_MAYBE_UNUSED [[__maybe_unused__]]
  1329. #elif _GL_HAS_ATTRIBUTE (unused)
  1330. # define _GL_ATTRIBUTE_MAYBE_UNUSED __attribute__ ((__unused__))
  1331. #else
  1332. # define _GL_ATTRIBUTE_MAYBE_UNUSED
  1333. #endif
  1334. /* Earlier spellings of this macro. */
  1335. #define _GL_UNUSED _GL_ATTRIBUTE_MAYBE_UNUSED
  1336. #define _UNUSED_PARAMETER_ _GL_ATTRIBUTE_MAYBE_UNUSED
  1337. #if _GL_HAS_ATTRIBUTE (malloc)
  1338. # define _GL_ATTRIBUTE_MALLOC __attribute__ ((__malloc__))
  1339. #else
  1340. # define _GL_ATTRIBUTE_MALLOC
  1341. #endif
  1342. #if 201710L < __STDC_VERSION__
  1343. # define _GL_ATTRIBUTE_NODISCARD [[__nodiscard__]]
  1344. #elif _GL_HAS_ATTRIBUTE (warn_unused_result)
  1345. # define _GL_ATTRIBUTE_NODISCARD __attribute__ ((__warn_unused_result__))
  1346. #else
  1347. # define _GL_ATTRIBUTE_NODISCARD
  1348. #endif
  1349. #if _GL_HAS_ATTRIBUTE (noinline)
  1350. # define _GL_ATTRIBUTE_NOINLINE __attribute__ ((__noinline__))
  1351. #else
  1352. # define _GL_ATTRIBUTE_NOINLINE
  1353. #endif
  1354. #if _GL_HAS_ATTRIBUTE (nonnull)
  1355. # define _GL_ATTRIBUTE_NONNULL(args) __attribute__ ((__nonnull__ args))
  1356. #else
  1357. # define _GL_ATTRIBUTE_NONNULL(args)
  1358. #endif
  1359. #if _GL_HAS_ATTRIBUTE (nonstring)
  1360. # define _GL_ATTRIBUTE_NONSTRING __attribute__ ((__nonstring__))
  1361. #else
  1362. # define _GL_ATTRIBUTE_NONSTRING
  1363. #endif
  1364. /* There is no _GL_ATTRIBUTE_NORETURN; use _Noreturn instead. */
  1365. #if _GL_HAS_ATTRIBUTE (nothrow) && !defined __cplusplus
  1366. # define _GL_ATTRIBUTE_NOTHROW __attribute__ ((__nothrow__))
  1367. #else
  1368. # define _GL_ATTRIBUTE_NOTHROW
  1369. #endif
  1370. #if _GL_HAS_ATTRIBUTE (packed)
  1371. # define _GL_ATTRIBUTE_PACKED __attribute__ ((__packed__))
  1372. #else
  1373. # define _GL_ATTRIBUTE_PACKED
  1374. #endif
  1375. #if _GL_HAS_ATTRIBUTE (pure)
  1376. # define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))
  1377. #else
  1378. # define _GL_ATTRIBUTE_PURE
  1379. #endif
  1380. #if _GL_HAS_ATTRIBUTE (returns_nonnull)
  1381. # define _GL_ATTRIBUTE_RETURNS_NONNULL __attribute__ ((__returns_nonnull__))
  1382. #else
  1383. # define _GL_ATTRIBUTE_RETURNS_NONNULL
  1384. #endif
  1385. #if _GL_HAS_ATTRIBUTE (sentinel)
  1386. # define _GL_ATTRIBUTE_SENTINEL(pos) __attribute__ ((__sentinel__ pos))
  1387. #else
  1388. # define _GL_ATTRIBUTE_SENTINEL(pos)
  1389. #endif
  1390. /* To support C++ as well as C, use _GL_UNUSED_LABEL with trailing ';'. */
  1391. #if !defined __cplusplus || _GL_GNUC_PREREQ (4, 5)
  1392. # define _GL_UNUSED_LABEL _GL_ATTRIBUTE_MAYBE_UNUSED
  1393. #else
  1394. # define _GL_UNUSED_LABEL
  1395. #endif
  1396. /* Please see the Gnulib manual for how to use these macros.
  1397. Suppress extern inline with HP-UX cc, as it appears to be broken; see
  1398. <https://lists.gnu.org/r/bug-texinfo/2013-02/msg00030.html>.
  1399. Suppress extern inline with Sun C in standards-conformance mode, as it
  1400. mishandles inline functions that call each other. E.g., for 'inline void f
  1401. (void) { } inline void g (void) { f (); }', c99 incorrectly complains
  1402. 'reference to static identifier "f" in extern inline function'.
  1403. This bug was observed with Sun C 5.12 SunOS_i386 2011/11/16.
  1404. Suppress extern inline (with or without __attribute__ ((__gnu_inline__)))
  1405. on configurations that mistakenly use 'static inline' to implement
  1406. functions or macros in standard C headers like <ctype.h>. For example,
  1407. if isdigit is mistakenly implemented via a static inline function,
  1408. a program containing an extern inline function that calls isdigit
  1409. may not work since the C standard prohibits extern inline functions
  1410. from calling static functions (ISO C 99 section 6.7.4.(3).
  1411. This bug is known to occur on:
  1412. OS X 10.8 and earlier; see:
  1413. https://lists.gnu.org/r/bug-gnulib/2012-12/msg00023.html
  1414. DragonFly; see
  1415. http://muscles.dragonflybsd.org/bulk/clang-master-potential/20141111_102002/logs/ah-tty-0.3.12.log
  1416. FreeBSD; see:
  1417. https://lists.gnu.org/r/bug-gnulib/2014-07/msg00104.html
  1418. OS X 10.9 has a macro __header_inline indicating the bug is fixed for C and
  1419. for clang but remains for g++; see <https://trac.macports.org/ticket/41033>.
  1420. Assume DragonFly and FreeBSD will be similar.
  1421. GCC 4.3 and above with -std=c99 or -std=gnu99 implements ISO C99
  1422. inline semantics, unless -fgnu89-inline is used. It defines a macro
  1423. __GNUC_STDC_INLINE__ to indicate this situation or a macro
  1424. __GNUC_GNU_INLINE__ to indicate the opposite situation.
  1425. GCC 4.2 with -std=c99 or -std=gnu99 implements the GNU C inline
  1426. semantics but warns, unless -fgnu89-inline is used:
  1427. warning: C99 inline functions are not supported; using GNU89
  1428. warning: to disable this warning use -fgnu89-inline or the gnu_inline function attribute
  1429. It defines a macro __GNUC_GNU_INLINE__ to indicate this situation.
  1430. */
  1431. #if (((defined __APPLE__ && defined __MACH__) \
  1432. || defined __DragonFly__ || defined __FreeBSD__) \
  1433. && (defined __header_inline \
  1434. ? (defined __cplusplus && defined __GNUC_STDC_INLINE__ \
  1435. && ! defined __clang__) \
  1436. : ((! defined _DONT_USE_CTYPE_INLINE_ \
  1437. && (defined __GNUC__ || defined __cplusplus)) \
  1438. || (defined _FORTIFY_SOURCE && 0 < _FORTIFY_SOURCE \
  1439. && defined __GNUC__ && ! defined __cplusplus))))
  1440. # define _GL_EXTERN_INLINE_STDHEADER_BUG
  1441. #endif
  1442. #if ((__GNUC__ \
  1443. ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \
  1444. : (199901L <= __STDC_VERSION__ \
  1445. && !defined __HP_cc \
  1446. && !defined __PGI \
  1447. && !(defined __SUNPRO_C && __STDC__))) \
  1448. && !defined _GL_EXTERN_INLINE_STDHEADER_BUG)
  1449. # define _GL_INLINE inline
  1450. # define _GL_EXTERN_INLINE extern inline
  1451. # define _GL_EXTERN_INLINE_IN_USE
  1452. #elif (2 < __GNUC__ + (7 <= __GNUC_MINOR__) && !defined __STRICT_ANSI__ \
  1453. && !defined _GL_EXTERN_INLINE_STDHEADER_BUG)
  1454. # if defined __GNUC_GNU_INLINE__ && __GNUC_GNU_INLINE__
  1455. /* __gnu_inline__ suppresses a GCC 4.2 diagnostic. */
  1456. # define _GL_INLINE extern inline __attribute__ ((__gnu_inline__))
  1457. # else
  1458. # define _GL_INLINE extern inline
  1459. # endif
  1460. # define _GL_EXTERN_INLINE extern
  1461. # define _GL_EXTERN_INLINE_IN_USE
  1462. #else
  1463. # define _GL_INLINE static _GL_UNUSED
  1464. # define _GL_EXTERN_INLINE static _GL_UNUSED
  1465. #endif
  1466. /* In GCC 4.6 (inclusive) to 5.1 (exclusive),
  1467. suppress bogus "no previous prototype for 'FOO'"
  1468. and "no previous declaration for 'FOO'" diagnostics,
  1469. when FOO is an inline function in the header; see
  1470. <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54113> and
  1471. <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63877>. */
  1472. #if __GNUC__ == 4 && 6 <= __GNUC_MINOR__
  1473. # if defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__
  1474. # define _GL_INLINE_HEADER_CONST_PRAGMA
  1475. # else
  1476. # define _GL_INLINE_HEADER_CONST_PRAGMA \
  1477. _Pragma ("GCC diagnostic ignored \"-Wsuggest-attribute=const\"")
  1478. # endif
  1479. # define _GL_INLINE_HEADER_BEGIN \
  1480. _Pragma ("GCC diagnostic push") \
  1481. _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \
  1482. _Pragma ("GCC diagnostic ignored \"-Wmissing-declarations\"") \
  1483. _GL_INLINE_HEADER_CONST_PRAGMA
  1484. # define _GL_INLINE_HEADER_END \
  1485. _Pragma ("GCC diagnostic pop")
  1486. #else
  1487. # define _GL_INLINE_HEADER_BEGIN
  1488. # define _GL_INLINE_HEADER_END
  1489. #endif
  1490. /* Define to `int' if <sys/types.h> doesn't define. */
  1491. /* #undef gid_t */
  1492. /* Define to `__inline__' or `__inline' if that's what the C compiler
  1493. calls it, or to nothing if 'inline' is not supported under any name. */
  1494. #ifndef __cplusplus
  1495. /* #undef inline */
  1496. #endif
  1497. /* Define to long or long long if <stdint.h> and <inttypes.h> don't define. */
  1498. /* #undef intmax_t */
  1499. /* Work around a bug in Apple GCC 4.0.1 build 5465: In C99 mode, it supports
  1500. the ISO C 99 semantics of 'extern inline' (unlike the GNU C semantics of
  1501. earlier versions), but does not display it by setting __GNUC_STDC_INLINE__.
  1502. __APPLE__ && __MACH__ test for Mac OS X.
  1503. __APPLE_CC__ tests for the Apple compiler and its version.
  1504. __STDC_VERSION__ tests for the C99 mode. */
  1505. #if defined __APPLE__ && defined __MACH__ && __APPLE_CC__ >= 5465 && !defined __cplusplus && __STDC_VERSION__ >= 199901L && !defined __GNUC_STDC_INLINE__
  1506. # define __GNUC_STDC_INLINE__ 1
  1507. #endif
  1508. /* Define to a type if <wchar.h> does not define. */
  1509. /* #undef mbstate_t */
  1510. /* _GL_CMP (n1, n2) performs a three-valued comparison on n1 vs. n2, where
  1511. n1 and n2 are expressions without side effects, that evaluate to real
  1512. numbers (excluding NaN).
  1513. It returns
  1514. 1 if n1 > n2
  1515. 0 if n1 == n2
  1516. -1 if n1 < n2
  1517. The naïve code (n1 > n2 ? 1 : n1 < n2 ? -1 : 0) produces a conditional
  1518. jump with nearly all GCC versions up to GCC 10.
  1519. This variant (n1 < n2 ? -1 : n1 > n2) produces a conditional with many
  1520. GCC versions up to GCC 9.
  1521. The better code (n1 > n2) - (n1 < n2) from Hacker's Delight § 2-9
  1522. avoids conditional jumps in all GCC versions >= 3.4. */
  1523. #define _GL_CMP(n1, n2) (((n1) > (n2)) - ((n1) < (n2)))
  1524. /* Define to `int' if <sys/types.h> does not define. */
  1525. /* #undef mode_t */
  1526. /* Define to the type of st_nlink in struct stat, or a supertype. */
  1527. /* #undef nlink_t */
  1528. /* Define as a signed integer type capable of holding a process identifier. */
  1529. /* #undef pid_t */
  1530. /* Define as the type of the result of subtracting two pointers, if the system
  1531. doesn't define it. */
  1532. /* #undef ptrdiff_t */
  1533. /* Define to the equivalent of the C99 'restrict' keyword, or to
  1534. nothing if this is not supported. Do not define if restrict is
  1535. supported directly. */
  1536. #define restrict __restrict
  1537. /* Work around a bug in older versions of Sun C++, which did not
  1538. #define __restrict__ or support _Restrict or __restrict__
  1539. even though the corresponding Sun C compiler ended up with
  1540. "#define restrict _Restrict" or "#define restrict __restrict__"
  1541. in the previous line. This workaround can be removed once
  1542. we assume Oracle Developer Studio 12.5 (2016) or later. */
  1543. #if defined __SUNPRO_CC && !defined __RESTRICT && !defined __restrict__
  1544. # define _Restrict
  1545. # define __restrict__
  1546. #endif
  1547. /* Define as an integer type suitable for memory locations that can be
  1548. accessed atomically even in the presence of asynchronous signals. */
  1549. /* #undef sig_atomic_t */
  1550. /* Define to `unsigned int' if <sys/types.h> does not define. */
  1551. /* #undef size_t */
  1552. /* Define as a signed type of the same size as size_t. */
  1553. /* #undef ssize_t */
  1554. /* Define to `int' if <sys/types.h> doesn't define. */
  1555. /* #undef uid_t */
  1556. #undef HAVE_THREADS_H
  1557. #undef HAVE_SYS_SINGLE_THREADED_H
  1558. #define _GL_ATTRIBUTE_FORMAT_PRINTF(...)