From f4eb12dc74867de39d9726eec61d60a5da689019 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Fri, 20 Jul 2001 15:20:55 +0200
Subject: [PATCH] Bugfix.

Rev: src/code/bytecode.c:1.3
---
 src/code/bytecode.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/code/bytecode.c b/src/code/bytecode.c
index 44c4c377a2..f3742f075c 100644
--- a/src/code/bytecode.c
+++ b/src/code/bytecode.c
@@ -1,5 +1,5 @@
 /*
- * $Id: bytecode.c,v 1.2 2001/07/20 13:20:38 grubba Exp $
+ * $Id: bytecode.c,v 1.3 2001/07/20 13:20:55 grubba Exp $
  *
  * Default bytecode assembler for Pike.
  *
@@ -53,7 +53,7 @@ void ins_f_byte(unsigned int b)
   add_to_program((unsigned char)b);
 }
 
-static void ins_f_byte_with_arg(unsigned int a,unsigned INT32 b)
+void ins_f_byte_with_arg(unsigned int a,unsigned INT32 b)
 {
   switch(b >> 8)
   {
@@ -82,9 +82,9 @@ static void ins_f_byte_with_arg(unsigned int a,unsigned INT32 b)
   add_to_program((PIKE_OPCODE_T)b);
 }
 
-static void ins_f_byte_with_2_args(unsigned int a,
-				   unsigned INT32 c,
-				   unsigned INT32 b)
+void ins_f_byte_with_2_args(unsigned int a,
+			    unsigned INT32 c,
+			    unsigned INT32 b)
 {
   switch(b >> 8)
   {
-- 
GitLab