From d9ccf3a3945788b3b6068c9fe619005fb6bad062 Mon Sep 17 00:00:00 2001
From: Bill Currie <bill@taniwha.org>
Date: Fri, 7 Jan 2022 18:54:59 +0900
Subject: [PATCH] [qfcc] Remove a pile of stale externs

Those opcode pointers haven't been used for years.
---
 tools/qfcc/include/opcodes.h | 15 ---------------
 1 file changed, 15 deletions(-)

diff --git a/tools/qfcc/include/opcodes.h b/tools/qfcc/include/opcodes.h
index f6a95f75a..077d26e1e 100644
--- a/tools/qfcc/include/opcodes.h
+++ b/tools/qfcc/include/opcodes.h
@@ -31,21 +31,6 @@
 #ifndef __opcodes_h
 #define __opcodes_h
 
-extern struct v6p_opcode_s *op_done;
-extern struct v6p_opcode_s *op_return;
-extern struct v6p_opcode_s *op_return_v;
-extern struct v6p_opcode_s *op_if;
-extern struct v6p_opcode_s *op_ifnot;
-extern struct v6p_opcode_s *op_ifbe;
-extern struct v6p_opcode_s *op_ifb;
-extern struct v6p_opcode_s *op_ifae;
-extern struct v6p_opcode_s *op_ifa;
-extern struct v6p_opcode_s *op_state;
-extern struct v6p_opcode_s *op_state_f;
-extern struct v6p_opcode_s *op_goto;
-extern struct v6p_opcode_s *op_jump;
-extern struct v6p_opcode_s *op_jumpb;
-
 struct operand_s;
 
 extern struct v6p_opcode_s *opcode_map;