home *** CD-ROM | disk | FTP | other *** search
- /*- BSP.H ------------------------------------------------------------------*/
-
- #include <stdio.h>
- #include <conio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <alloc.h>
- #include <stdarg.h>
- #include <ctype.h>
- #include <dir.h>
- #include <dos.h>
- #include <math.h>
-
- /*- boolean constants ------------------------------------------------------*/
-
- #define TRUE 1
- #define FALSE 0
-
- /*- The function prototypes ------------------------------------------------*/
-
- int cdecl main(); /* from bsp.c */
-
- void ProgError( char *, ...); /* from funcs.c */
- void *GetMemory( size_t);
- void *ResizeMemory( void *, size_t);
-
- unsigned int ComputeAngle( int, int);
-
- // #define max(a,b) (((a)>(b))?(a):(b))
-
- /*------------------------------- end of file ------------------------------*/
-