home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The AGA Experience 2
/
agavol2.iso
/
software
/
utilities
/
wb_tools
/
executive_v1.30
/
sysinfo.lzx
/
examples
/
test
/
defs.h
next >
Wrap
C/C++ Source or Header
|
2007-01-12
|
576b
|
38 lines
/*
* This file is public domain.
*
* Author: Petri Nordlund <petrin@megabaud.fi>
*
* $Id: defs.h 1.3 1995/10/05 12:31:55 petrin Exp petrin $
*
*/
/* EXEC/TYPES.H */
#include <exec/types.h>
/* SYSTEM */
#include <exec/memory.h>
#include <exec/ports.h>
#include <exec/execbase.h>
#include <dos/dos.h>
/* PROTOS */
#include <proto/exec.h>
/* ANSI C */
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
/* General macros */
#ifndef max
#define max(a,b) ((a) > (b) ? (a) : (b))
#endif
#ifndef min
#define min(a,b) ((a) <= (b) ? (a) : (b))
#endif