1993-10-29 02:03:32 +00:00
|
|
|
/* Intel 386 running LynxOS */
|
1993-09-22 14:54:50 +00:00
|
|
|
|
|
|
|
#ifndef hosts_i386lynx_h
|
|
|
|
#define hosts_i386lynx_h
|
1993-08-02 05:57:29 +00:00
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
1993-09-22 14:54:50 +00:00
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/mem.h>
|
|
|
|
#include <sys/signal.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#include <sys/itimer.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/proc.h>
|
1993-08-02 05:57:29 +00:00
|
|
|
|
|
|
|
#define HOST_PAGE_SIZE NBPG
|
|
|
|
#define HOST_MACHINE_ARCH bfd_arch_i386
|
1993-09-22 14:54:50 +00:00
|
|
|
#define HOST_TEXT_START_ADDR USRTEXT
|
1993-08-02 05:57:29 +00:00
|
|
|
|
1993-09-22 14:54:50 +00:00
|
|
|
#define HOST_LYNX
|
1993-08-02 05:57:29 +00:00
|
|
|
|
|
|
|
#include "fopen-same.h"
|
1993-10-29 02:03:32 +00:00
|
|
|
|
1993-08-02 05:57:29 +00:00
|
|
|
#undef I386 /* Lynx defines this for some reason */
|
1993-09-17 09:08:00 +00:00
|
|
|
|
1993-09-28 01:53:25 +00:00
|
|
|
/* Lynx has calloc, but no cfree, and gprof uses it. */
|
|
|
|
|
|
|
|
#define cfree free
|
|
|
|
|
1993-10-29 02:03:32 +00:00
|
|
|
#endif /* hosts_i386lynx_h */
|