home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / gnu / gdb-4.12.tar.gz / gdb-4.12.tar / gdb-4.12 / bfd / hosts / lynx.h < prev    next >
C/C++ Source or Header  |  1994-02-03  |  731b  |  39 lines

  1. /* Architecture independant LynxOS host support for 2.2 */
  2.  
  3. #ifndef hosts_lynx_h
  4. #define hosts_lynx_h
  5.  
  6. #include <fcntl.h>
  7. #include <errno.h>
  8. #include <stdio.h>
  9. #include <stdlib.h>
  10. #include <ctype.h>
  11. #include <string.h>
  12.  
  13. #include <sys/conf.h>
  14. #include <sys/kernel.h>
  15. #include <sys/mem.h>
  16. #include <sys/signal.h>
  17. #include <sys/time.h>
  18. #include <sys/resource.h>
  19. #include <sys/itimer.h>
  20. #include <sys/file.h>
  21. #include <sys/proc.h>
  22.  
  23. #define    HOST_PAGE_SIZE        NBPG
  24. #define    HOST_TEXT_START_ADDR    USRTEXT
  25.  
  26. #define HOST_LYNX
  27.  
  28. #include "fopen-same.h"
  29.  
  30. #define FPRINTF_ALREADY_DECLARED
  31.  
  32. #undef I386            /* Lynx defines this for some reason */
  33.  
  34. /* Lynx has calloc, but no cfree, and gprof uses it. */
  35.  
  36. #define cfree free
  37.  
  38. #endif /* hosts_lynx_h */
  39.