A shell that runs x86_64 assembly
c
x86-64
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

config.h.in 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /* config.h.in. Generated from configure.ac by autoheader. */
  2. /* Define to 1 if you have the `bzero' function. */
  3. #undef HAVE_BZERO
  4. /* Define to 1 if you have the <fcntl.h> header file. */
  5. #undef HAVE_FCNTL_H
  6. /* Define to 1 if you have the `fork' function. */
  7. #undef HAVE_FORK
  8. /* Define to 1 if you have the `gmtime_r' function. */
  9. #undef HAVE_GMTIME_R
  10. /* Define to 1 if you have the <inttypes.h> header file. */
  11. #undef HAVE_INTTYPES_H
  12. /* Define to 1 if you have the `readline' library (-lreadline). */
  13. #undef HAVE_LIBREADLINE
  14. /* Define to 1 if you have the <limits.h> header file. */
  15. #undef HAVE_LIMITS_H
  16. /* Define to 1 if your system has a GNU libc compatible `malloc' function, and
  17. to 0 otherwise. */
  18. #undef HAVE_MALLOC
  19. /* Define to 1 if you have the <memory.h> header file. */
  20. #undef HAVE_MEMORY_H
  21. /* Define to 1 if your system has a GNU libc compatible `realloc' function,
  22. and to 0 otherwise. */
  23. #undef HAVE_REALLOC
  24. /* Define to 1 if you have the <stdint.h> header file. */
  25. #undef HAVE_STDINT_H
  26. /* Define to 1 if you have the <stdlib.h> header file. */
  27. #undef HAVE_STDLIB_H
  28. /* Define to 1 if you have the <strings.h> header file. */
  29. #undef HAVE_STRINGS_H
  30. /* Define to 1 if you have the <string.h> header file. */
  31. #undef HAVE_STRING_H
  32. /* Define to 1 if you have the `strtoull,' function. */
  33. #undef HAVE_STRTOULL_
  34. /* Define to 1 if you have the <sys/stat.h> header file. */
  35. #undef HAVE_SYS_STAT_H
  36. /* Define to 1 if you have the <sys/types.h> header file. */
  37. #undef HAVE_SYS_TYPES_H
  38. /* Define to 1 if you have the <unistd.h> header file. */
  39. #undef HAVE_UNISTD_H
  40. /* Define to 1 if you have the `vfork' function. */
  41. #undef HAVE_VFORK
  42. /* Define to 1 if you have the <vfork.h> header file. */
  43. #undef HAVE_VFORK_H
  44. /* Define to 1 if `fork' works. */
  45. #undef HAVE_WORKING_FORK
  46. /* Define to 1 if `vfork' works. */
  47. #undef HAVE_WORKING_VFORK
  48. /* Name of package */
  49. #undef PACKAGE
  50. /* Define to the address where bug reports for this package should be sent. */
  51. #undef PACKAGE_BUGREPORT
  52. /* Define to the full name of this package. */
  53. #undef PACKAGE_NAME
  54. /* Define to the full name and version of this package. */
  55. #undef PACKAGE_STRING
  56. /* Define to the one symbol short name of this package. */
  57. #undef PACKAGE_TARNAME
  58. /* Define to the home page for this package. */
  59. #undef PACKAGE_URL
  60. /* Define to the version of this package. */
  61. #undef PACKAGE_VERSION
  62. /* Define to 1 if you have the ANSI C header files. */
  63. #undef STDC_HEADERS
  64. /* Enable extensions on AIX 3, Interix. */
  65. #ifndef _ALL_SOURCE
  66. # undef _ALL_SOURCE
  67. #endif
  68. /* Enable GNU extensions on systems that have them. */
  69. #ifndef _GNU_SOURCE
  70. # undef _GNU_SOURCE
  71. #endif
  72. /* Enable threading extensions on Solaris. */
  73. #ifndef _POSIX_PTHREAD_SEMANTICS
  74. # undef _POSIX_PTHREAD_SEMANTICS
  75. #endif
  76. /* Enable extensions on HP NonStop. */
  77. #ifndef _TANDEM_SOURCE
  78. # undef _TANDEM_SOURCE
  79. #endif
  80. /* Enable general extensions on Solaris. */
  81. #ifndef __EXTENSIONS__
  82. # undef __EXTENSIONS__
  83. #endif
  84. /* Version number of package */
  85. #undef VERSION
  86. /* Define to 1 if on MINIX. */
  87. #undef _MINIX
  88. /* Define to 2 if the system does not provide POSIX.1 features except with
  89. this defined. */
  90. #undef _POSIX_1_SOURCE
  91. /* Define to 1 if you need to in order for `stat' and other things to work. */
  92. #undef _POSIX_SOURCE
  93. /* Define to empty if `const' does not conform to ANSI C. */
  94. #undef const
  95. /* Define to `__inline__' or `__inline' if that's what the C compiler
  96. calls it, or to nothing if 'inline' is not supported under any name. */
  97. #ifndef __cplusplus
  98. #undef inline
  99. #endif
  100. /* Define to rpl_malloc if the replacement function should be used. */
  101. #undef malloc
  102. /* Define to `int' if <sys/types.h> does not define. */
  103. #undef pid_t
  104. /* Define to rpl_realloc if the replacement function should be used. */
  105. #undef realloc
  106. /* Define to `unsigned int' if <sys/types.h> does not define. */
  107. #undef size_t
  108. /* Define as `fork' if `vfork' does not work. */
  109. #undef vfork