home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / word2x0a.zip / source / config.h < prev    next >
C/C++ Source or Header  |  1998-08-08  |  2KB  |  92 lines

  1.  
  2. /* to compile for OS/2 with emx copy this file to config.h (jk) */
  3. /* OS/2 version based on the work of Oleg V.Cat <prg21@morics.riga.post.lv> */
  4.  
  5. #ifndef __CONFIG_H__
  6. #define __CONFIG_H__ 1
  7.  
  8. #define HAVE_STDLIB_H    1
  9. #include "portable.h"
  10.  
  11. /* Define if using alloca.c.  */
  12. #undef C_ALLOCA
  13.  
  14. /* Define to one of _getb67, GETB67, getb67 for Cray-2 and Cray-YMP systems.
  15.    This function is required for alloca.c support on those systems.  */
  16. #undef CRAY_STACKSEG_END
  17.  
  18. /* Define if you have alloca, as a function or macro.  */
  19. #undef HAVE_ALLOCA
  20.  
  21. /* Define if you have <alloca.h> and it should be used (not on Ultrix).  */
  22. #undef HAVE_ALLOCA_H
  23.  
  24. /* If using the C implementation of alloca, define if you know the
  25.    direction of stack growth for your system; otherwise it will be
  26.    automatically deduced at run-time.
  27.     STACK_DIRECTION > 0 => grows toward higher addresses
  28.     STACK_DIRECTION < 0 => grows toward lower addresses
  29.     STACK_DIRECTION = 0 => direction of growth unknown
  30.  */
  31. #undef STACK_DIRECTION
  32.  
  33. /* Define if you have the ANSI C header files.  */
  34. #undef STDC_HEADERS
  35.  
  36. /* Define if you can safely include both <sys/time.h> and <time.h>.  */
  37. #undef TIME_WITH_SYS_TIME
  38.  
  39. /* Define if your <sys/time.h> declares struct tm.  */
  40. #undef TM_IN_SYS_TIME
  41.  
  42. /* Define if you have the fstat function.  */
  43. #undef HAVE_FSTAT
  44.  
  45. /* Define if you have the localtime function.  */
  46. #undef HAVE_LOCALTIME
  47.  
  48. /* Define if you have the strcasecmp function.  */
  49. #undef HAVE_STRCASECMP
  50.  
  51. /* Define if you have the strdup function.  */
  52. #undef HAVE_STRDUP
  53.  
  54. /* Define if you have the strncasecmp function.  */
  55. #undef HAVE_STRNCASECMP
  56.  
  57. /* Define if you have the <string.h> header file.  */
  58. #undef HAVE_STRING_H
  59.  
  60. /* Define if you have the <strings.h> header file.  */
  61. #undef HAVE_STRINGS_H
  62.  
  63. /* Define if you have the <sys/stat.h> header file.  */
  64. #undef HAVE_SYS_STAT_H
  65.  
  66. /* Define if you have the <sys/time.h> header file.  */
  67. #undef HAVE_SYS_TIME_H
  68.  
  69. /* Define if you have the <time.h> header file.  */
  70. #undef HAVE_TIME_H
  71.  
  72. /* Define if you have the <unistd.h> header file.  */
  73. #undef HAVE_UNISTD_H
  74.  
  75. /* Define if strdup is delcared */
  76. #undef HAVE_DECL_strdup
  77.  
  78. /* Define if strcasecmp is delcared */
  79. #undef HAVE_DECL_strcasecmp
  80.  
  81. /* Define if strncasecmp is delcared */
  82. #undef HAVE_DECL_strncasecmp
  83.  
  84. /* Define if you have the sun library (-lsun).  */
  85. #undef HAVE_LIBSUN
  86.  
  87. #ifndef NUNITS
  88. #define NUNITS 4
  89. #endif /* NUINTS */
  90.  
  91. #endif /* __CONFIG_H__ */
  92.