hyper.h is now the only file to include

This commit is contained in:
Zeno Rogue 2019-09-05 09:07:04 +02:00
parent fbe32b0459
commit 19a54cfa9d
2 changed files with 7 additions and 2 deletions

View File

@ -11,8 +11,6 @@
#define IN_CU(x) (CU == x)
#endif
#include "sysconfig.h"
#include "classes.h"
#include "hyper.h"
#define CU_INIT IN_CU(0)

View File

@ -9,10 +9,16 @@
* and general routines which did not fit elsewhere
*/
#ifndef _HYPER_H_
#define _HYPER_H_
// version numbers
#define VER "11.1o"
#define VERNUM_HEX 0xA70F
#include "sysconfig.h"
#include "classes.h"
#include <stdarg.h>
#include "hyper_function.h"
@ -782,3 +788,4 @@ static const color_t NOCOLOR = 0;
#define IS(z)
#define EX
#endif