general.h 687 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* $Id: general.h,v 1.11 2001/04/30 16:02:05 kilobug Exp $ */
  2. #ifndef __PROLO_GENERAL_H__
  3. #define __PROLO_GENERAL_H__
  4. #ifdef HAVE_CONFIG_H
  5. # include <config.h>
  6. #endif
  7. #ifdef HAVE_FCNTL_H
  8. # include <fcntl.h>
  9. #endif
  10. #ifdef HAVE_STDLIB_H
  11. # include <stdlib.h>
  12. #endif
  13. #ifdef HAVE_ERRNO_H
  14. # include <errno.h>
  15. #endif
  16. #ifdef HAVE_UNISTD_H
  17. # include <unistd.h>
  18. #endif
  19. #ifdef HAVE_STDIO_H
  20. # include <stdio.h>
  21. #endif
  22. #ifdef HAVE_STRING_H
  23. # include <string.h>
  24. #endif
  25. #ifdef HAVE_CTYPE_H
  26. # include <ctype.h>
  27. #endif
  28. #ifdef HAVE_MATH_H
  29. # include <math.h>
  30. #endif
  31. #ifdef HAVE_SIGNAL_H
  32. # include <signal.h>
  33. #endif
  34. #ifdef WANT_PROTOCOL_VERSION
  35. # define PROTOCOL_VERSION 0x4207
  36. #endif
  37. #endif