]> git.jsancho.org Git - lugaru.git/blob - Source/nommgr.h
Added GPL license and headers.
[lugaru.git] / Source / nommgr.h
1 /*
2 Copyright (C) 2003, 2010 - Wolfire Games
3
4 This file is part of Lugaru.
5
6 Lugaru is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either version 2
9 of the License, or (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
14
15 See the GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20 */
21
22 // ---------------------------------------------------------------------------------------------------------------------------------
23 //                                                 _     
24 //                                                | |    
25 //  _ __   ___  _ __ ___  _ __ ___   __ _ _ __    | |__  
26 // | '_ \ / _ \| '_ ` _ \| '_ ` _ \ / _` | '__|   | '_ \ 
27 // | | | | (_) | | | | | | | | | | | (_| | |    _ | | | |
28 // |_| |_|\___/|_| |_| |_|_| |_| |_|\__, |_|   (_)|_| |_|
29 //                                   __/ |               
30 //                                  |___/                
31 //
32 // Memory manager & tracking software
33 //
34 // Best viewed with 8-character tabs and (at least) 132 columns
35 //
36 // ---------------------------------------------------------------------------------------------------------------------------------
37 //
38 // Restrictions & freedoms pertaining to usage and redistribution of this software:
39 //
40 //  * This software is 100% free
41 //  * If you use this software (in part or in whole) you must credit the author.
42 //  * This software may not be re-distributed (in part or in whole) in a modified
43 //    form without clear documentation on how to obtain a copy of the original work.
44 //  * You may not use this software to directly or indirectly cause harm to others.
45 //  * This software is provided as-is and without warrantee. Use at your own risk.
46 //
47 // For more information, visit HTTP://www.FluidStudios.com
48 //
49 // ---------------------------------------------------------------------------------------------------------------------------------
50 // Originally created on 12/22/2000 by Paul Nettle
51 //
52 // Copyright 2000, Fluid Studios, Inc., all rights reserved.
53 // ---------------------------------------------------------------------------------------------------------------------------------
54
55 #ifdef  new
56 #undef  new
57 #endif
58
59 #ifdef  delete
60 #undef  delete
61 #endif
62
63 #ifdef  malloc
64 #undef  malloc
65 #endif
66
67 #ifdef  calloc
68 #undef  calloc
69 #endif
70
71 #ifdef  realloc
72 #undef  realloc
73 #endif
74
75 #ifdef  free
76 #undef  free
77 #endif
78
79 // ---------------------------------------------------------------------------------------------------------------------------------
80 // nommgr.h - End of file
81 // ---------------------------------------------------------------------------------------------------------------------------------
82