allow extrn symbols to be defined by the unit itself (part II)
[xorcyst.git] / codegen.h
blob5010d7ae0b3c83abb35f95a02458cc28e510709d
1 /*
2 * $Id: codegen.h,v 1.3 2007/08/07 21:23:24 khansen Exp $
3 * $Log: codegen.h,v $
4 * Revision 1.3 2007/08/07 21:23:24 khansen
5 * const
7 * Revision 1.2 2007/07/22 13:35:20 khansen
8 * convert tabs to whitespaces
10 * Revision 1.1 2004/06/30 07:56:22 kenth
11 * Initial revision
15 /**
16 * (C) 2004 Kent Hansen
18 * The XORcyst is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
23 * The XORcyst is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
28 * You should have received a copy of the GNU General Public License
29 * along with The XORcyst; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
33 #ifndef CODEGEN_H
34 #define CODEGEN_H
36 #include "astnode.h"
38 /* Function prototypes. */
39 void codegen_write(const astnode *, FILE *);
41 #endif /* !CODEGEN_H */