home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 311_01 / dblib.h < prev    next >
C/C++ Source or Header  |  1990-04-22  |  2KB  |  67 lines

  1. /****************************************************************************/
  2. /*                                                                          */
  3. /*                                                                          */
  4. /*      dblib.h  v1.3  (c) 1990  Ken Harris                                 */
  5. /*                                                                          */
  6. /*                                                                          */
  7. /****************************************************************************/
  8. /*                                                                          */
  9. /*      This software is made available on an AS-IS basis. Unrestricted     */
  10. /*      use is granted provided that the copyright notice remains intact.   */
  11. /*      The author makes no warranties expressed or implied.                */
  12. /*                                                                          */
  13. /****************************************************************************/
  14.  
  15. /*
  16.  *  This file contains header information for building the DB library
  17.  *  routines. It does not need to be included in applications. It defines 
  18.  *  the right set of include files for each configuration.
  19.  */
  20.  
  21. #include <stdio.h>
  22.  
  23. /*
  24.  * Microsoft C V5.10
  25.  */
  26. #ifdef MSC
  27. #include <fcntl.h>
  28. #include <sys/types.h>
  29. #include <sys/stat.h>
  30. #include <ctype.h>
  31. #endif
  32.  
  33. /*
  34.  * Turbo C V2.0
  35.  */
  36. #ifdef TURBO
  37. #include <fcntl.h>
  38. #include <sys/types.h>
  39. #include <sys/stat.h>
  40. #include <ctype.h>
  41. #endif
  42.  
  43. /*
  44.  * DEC Ultrix gcc V1.36
  45.  */
  46. #ifdef ULTRIX
  47. #include <fcntl.h>
  48. #include <sys/types.h>
  49. #include <sys/stat.h>
  50. #include <ctype.h>
  51. #endif
  52.  
  53. /*
  54.  * SYSV - 3b1 rel 3
  55.  */
  56. #ifdef SYSV
  57. #include <fcntl.h>
  58. #include <sys/types.h>
  59. #include <sys/stat.h>
  60. #include <ctype.h>
  61. #endif
  62.  
  63. #include "db.h"
  64.  
  65.  
  66. void *memcpy();
  67.