pike.git
/
src
/
program.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.c:1:
/* || 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: program.c,v 1.
730
2008/
06
/
29
21
:
00
:
42
grubba
Exp $
+
|| $Id: program.c,v 1.
731
2008/
07
/
09
20
:
32
:
48
mast
Exp $
*/ #include "global.h" #include "program.h" #include "object.h" #include "dynamic_buffer.h" #include "pike_types.h" #include "stralloc.h" #include "las.h" #include "lex.h"
pike.git/src/program.c:7674:
if(c->placeholder) { free_object(c->placeholder); c->placeholder = NULL; } if(c->lex.current_file) { free_string(c->lex.current_file); c->lex.current_file = NULL; } free_svalue(& c->default_module); c->default_module.type = T_INT;
+
c->default_module.subtype = NUMBER_NUMBER;
free_supporter(&c->supporter); verify_supporters(); } static void run_init(struct compilation *c) { debug_malloc_touch(c); if (c->compat_handler) free_object(c->compat_handler); c->compat_handler=0;