pike.git/
src/
docode.c
Branch:
Tag:
Non-build tags
All tags
No tags
2001-03-09
2001-03-09 17:13:29 by Henrik Grubbström (Grubba) <grubba@grubba.org>
9d6f3ea5b817b1795aa4ee5e6fab9341de6b2d21 (
11
lines) (+
6
/-
5
)
[
Show
|
Annotate
]
Branch:
7.9
FIxed type for do_pop_to_mark() et al.
Rev: src/docode.c:1.109
5:
\*/ /**/ #include "global.h"
-
RCSID("$Id: docode.c,v 1.
108
2001/
02
/
25
17:
40
:
19
hubbe
Exp $");
+
RCSID("$Id: docode.c,v 1.
109
2001/
03
/
09
17:
13
:
29
grubba
Exp $");
#include "las.h" #include "program.h" #include "pike_types.h"
254:
current_stack_depth -= x; }
-
void do_pop_mark()
+
void do_pop_mark(
void
)
{ emit0(F_POP_MARK); }
-
void do_pop_to_mark()
+
void do_pop_to_mark(
void
)
{ emit0(F_POP_TO_MARK); }
-
void do_cleanup_synch_mark()
+
void do_cleanup_synch_mark(
void
)
{ if (d_flag > 2) emit0(F_CLEANUP_SYNCH_MARK); }
-
void do_escape_catch()
+
void do_escape_catch(
void
)
{ emit0(F_ESCAPE_CATCH); }