pike.git/
src/
pike_types.c
Branch:
Tag:
Non-build tags
All tags
No tags
2004-04-19
2004-04-19 13:08:38 by Henrik Grubbström (Grubba) <grubba@grubba.org>
c4190e954f2ea05d8f91235b126fded97540fbae (
20
lines) (+
13
/-
7
)
[
Show
|
Annotate
]
Branch:
7.9
Cleanup fix.
Rev: src/pike_types.c:1.234
2:
|| This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: pike_types.c,v 1.
233
2004/
03
/
12
21
:
18
:
54
grubba Exp $
+
|| $Id: pike_types.c,v 1.
234
2004/
04
/
19
13
:
08
:
38
grubba Exp $
*/ #include "global.h"
-
RCSID("$Id: pike_types.c,v 1.
233
2004/
03
/
12
21
:
18
:
54
grubba Exp $");
+
RCSID("$Id: pike_types.c,v 1.
234
2004/
04
/
19
13
:
08
:
38
grubba Exp $");
#include <ctype.h> #include "svalue.h" #include "pike_types.h"
21:
#include "pike_macros.h" #include "pike_error.h" #include "las.h"
-
#include "language.h"
+
#include "lex.h" #include "pike_memory.h" #include "bignum.h"
4941:
/* Free the hashtable here. */ if (pike_type_hash) { free(pike_type_hash);
-
/* Don't do this, it messes up stuff... *
/
-
/
* pike_type_hash = NULL;
*/
+
/* Don't do this, it messes up stuff...
+
*
+
*
It's needed for dmalloc to survive.
+
*/
+
pike_type_hash = NULL;
}
-
/* Don't do this, it messes up stuff... *
/
-
/
* pike_type_hash_size = 0;
*/
+
/* Don't do this, it messes up stuff...
+
*
+
*
It's needed for dmalloc to survive.
+
*/
+
pike_type_hash_size = 0;
#ifdef DO_PIKE_CLEANUP free_all_pike_type_blocks(); #endif /* DO_PIKE_CLEANUP */ }