fixed some bugs in new 'g'o system
[k8-i-v-a-n.git] / src / game / ivancommon.h
blob9c3031b1a9f7251edd0793574df1c0683f8e319d
1 /*
3 * Iter Vehemens ad Necem (IVAN)
4 * Copyright (C) Timo Kiviluoto
5 * Released under the GNU General
6 * Public License
8 * See LICENSING which should be included
9 * along with this file for more details
12 #ifndef __IVANCOMMON_H__
13 #define __IVANCOMMON_H__
15 #include <cstdlib>
16 #include <exception> // for std::bad_alloc
17 #include <new>
20 void *operator new (size_t size) throw (std::bad_alloc);
21 void operator delete (void *p) throw ();
24 #endif