home *** CD-ROM | disk | FTP | other *** search
- #include "ToolProto.h"
- #include <string.h>
- #include <intuition/intuition.h>
- #include <intuition/intuitionbase.h>
- #include <libraries/dos.h>
- #include <graphics/gfxmacros.h>
- #include <exec/memory.h>
- #include <proto/intuition.h>
- #include <proto/graphics.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <string.h>
- #include <intuition/intuitionbase.h>
-
- #undef Add
- #undef Sub
- #undef Div
- #undef Mul
- #undef Fix
- #undef Flt
- #undef Neg
-
- #define Add(a,b) (a+b)
- #define Sub(a,b) (a-b)
- #define Mul(a,b) (a*b)
- #define Div(a,b) (a/b)
- #define Fix(a) ((LONG)a)
- #define Flt(a) ((DOUBLE)a)
- #define Neg(a) (-a)
-
-