From 333b605b2afd472b823aeda0adf0e8b1ea9843c0 Mon Sep 17 00:00:00 2001 From: fishsoupisgood Date: Mon, 27 May 2019 02:41:51 +0100 Subject: initial commit from asl-1.41r8.tar.gz --- stdinc.h | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 stdinc.h (limited to 'stdinc.h') diff --git a/stdinc.h b/stdinc.h new file mode 100644 index 0000000..70d2fe3 --- /dev/null +++ b/stdinc.h @@ -0,0 +1,45 @@ +/* stdinc.h */ +/*****************************************************************************/ +/* AS-Portierung */ +/* */ +/* globaler Einzug immer benoetigter includes */ +/* */ +/* Historie: 21. 5.1996 min/max */ +/* 11. 5.1997 DOS-Anpassungen */ +/* */ +/*****************************************************************************/ + +#include +#ifndef __MUNIX__ +#include +#endif +#if !defined ( __MSDOS__ ) && !defined( __IBMC__ ) +#include +#endif +#include +#include +#include +#ifdef __MSDOS__ +#include +#else +#include +#ifndef __FreeBSD__ +#include +#endif +#endif + +#include "pascstyle.h" +#include "datatypes.h" +#include "chardefs.h" + +#ifndef min +#define min(a,b) ((ab)?(a):(b)) +#endif + +#ifndef M_PI +#define M_PI 3.1415926535897932385E0 +#endif + -- cgit v1.2.3