home *** CD-ROM | disk | FTP | other *** search
- /* $Id: all_includes.h,v 1.18 1994/02/03 21:25:53 ppessi Exp $
- *
- * This is include file, which includes most of AmiTCP/IP include files
- * for creation of an GST file for SASC.
- *
- * This file must be maintained to be consistent with the project itself
- * (ie. remember to add new include files when they are defined).
- */
-
- /*
- * first define preprocessor symbols for include files which must _not_
- * be included. This is mostly because of inline functions defined in
- * these files, which SASC doesn't like in GST's.
- *
- * Remember to #undef all these at the end, because otherwise they will
- * never be included!
- */
- #define SYS_SYSTM_H
- #define SYS_MALLOC_H
- #define SYS_SYNCH_H
- #define AMIGA_API_H
- #define AMIGA_INCLUDES_H
- #define SANA2REQUEST_H
- #define AMIGA_LIBCALLENTRY_H
- #define AMIGA_TIME_H
- #define AMIGA_SUBR_H
-
- /*
- * Include first configuration information
- *
- * This file does not include any other include files and can be compiled
- * anytime. Include it first for the definitions to be effective during
- * following includes, which may depend on preprocessor symbols defined here.
- */
- #include <conf.h>
-
- #include <sys/types.h>
-
- #if __SASC
- #define USE_BUILTIN_MATH
- #ifndef _STRING_H
- #include <string.h>
- #endif
- #endif
-
- /*
- * sys/param.h includes basic information about system and C-compiler
- * environment. It also contains for example incomplete structure
- * definitions for all prototype files in protos/ (structure pointers
- * only). This is why this file must be included first, since SASC
- * don't like incomplete declarations _after_ complete ones.
- */
- #include <sys/param.h>
-
- /*
- * following files are included instead of #include <kern/amiga_includes.h>
- */
- #ifndef EXEC_TYPES_H
- #include <exec/types.h>
- #endif
-
- #ifndef EXEC_LISTS_H
- #include <exec/lists.h>
- #endif
-
- #ifndef EXEC_MEMORY_H
- #include <exec/memory.h>
- #endif
-
- #ifndef EXEC_SEMAPHORES_H
- #include <exec/semaphores.h>
- #endif
-
- #ifndef EXEC_LIBRARIES_H
- #include <exec/libraries.h>
- #endif
-
- #ifndef EXEC_DEVICES_H
- #include <exec/devices.h>
- #endif
-
- #ifndef EXEC_EXECBASE_H
- #include <exec/execbase.h>
- #endif
-
- #ifndef DEVICES_TIMER_H
- #include <devices/timer.h>
- #endif
-
- #ifndef DOS_DOS_H
- #include <dos/dos.h>
- #endif
-
- #ifndef SYS_CDEFS_H
- #include <sys/cdefs.h>
- #endif
-
- #ifndef CLIB_EXEC_PROTOS_H
- #include <clib/exec_protos.h>
- #endif
- extern struct ExecBase *SysBase;
- #include <pragmas/exec_sysbase_pragmas.h>
-
- #ifndef PROTO_TIMER_H
- #include <proto/timer.h>
- #endif
-
- /*
- * undef math log, because it conflicts with log() used for logging.
- */
- #undef log
-
- #include <sys/time.h>
- #include <sys/uio.h>
- /* #include <sys/systm.h> commented bacause of inline functions*/
-
- #include <sys/errno.h>
- #include <sys/ioctl.h>
- #include <sys/kernel.h>
- /* #include <sys/malloc.h> */
- #include <sys/mbuf.h>
- #include <sys/queue.h>
- #include <sys/domain.h>
- #include <sys/protosw.h>
- #include <sys/socket.h>
- #include <sys/socketvar.h>
- /* #include <sys/synch.h> */
- #include <sys/syslog.h>
-
- #include <net/if.h>
- #include <net/netisr.h>
- #include <net/if_types.h>
- #include <net/raw_cb.h>
- #include <net/radix.h>
- #include <net/route.h>
- #include <net/sana2config.h>
- /* #include <net/sana2request.h> */
-
- #include <netinet/in_systm.h>
- #include <netinet/in.h>
- #include <netinet/ip.h>
-
- #include <netinet/ip_var.h>
- #include <netinet/ip_icmp.h>
- #include <netinet/icmp_var.h>
-
- #include <netinet/in_pcb.h>
- #include <netinet/in_var.h>
-
- #include <net/if_arp.h>
- #include <net/sana2arp.h>
- #include <net/if_sana.h>
- #include <net/sana2tags.h>
-
- #include <netinet/tcp.h>
- #include <netinet/tcp_timer.h>
- #include <netinet/tcp_var.h>
- #include <netinet/tcpip.h>
- #include <netinet/tcp_fsm.h>
- #include <netinet/tcp_seq.h>
- #include <netinet/tcp_debug.h>
-
- #include <netinet/udp.h>
- #include <netinet/udp_var.h>
-
- #include <api/amiga_raf.h>
- /* #include <api/amiga_api.h> */
- /* #include <api/amiga_libcallentry.h> */
- #include <kern/amiga_log.h>
- /* #include <kern/amiga_subr.h> */
- /* #include <kern/amiga_time.h> */
-
- #include <ctype.h>
- #include <signal.h>
- #include <stdarg.h>
- #include <limits.h>
-
- #undef AMIGA_SUBR_H
- #undef SYS_SYSTM_H
- #undef SYS_MALLOC_H
- #undef SYS_SYNCH_H
- #undef AMIGA_API_H
- #undef AMIGA_INCLUDES_H
- #undef SANA2REQUEST_H
- #undef AMIGA_LIBCALLENTRY_H
- #undef AMIGA_TIME_H
-