From 16e4964a31756bc6ac69f732e9613fe4193b273f Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 30 Jan 2004 07:16:48 +0000 Subject: [PATCH] fix a couple struct forward ref issues --- tools/qfcc/include/reloc.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/qfcc/include/reloc.h b/tools/qfcc/include/reloc.h index f20ade707..f3d5c180b 100644 --- a/tools/qfcc/include/reloc.h +++ b/tools/qfcc/include/reloc.h @@ -61,6 +61,8 @@ typedef struct reloc_s { } reloc_t; struct statement_s; +struct def_s; +struct function_s; reloc_t *new_reloc (int ofs, reloc_type type); void relocate_refs (reloc_t *refs, int ofs);