summaryrefslogtreecommitdiff
path: root/frontends
diff options
context:
space:
mode:
authorPeter Johnson <peter@tortall.net>2001-08-19 05:41:01 +0000
committerPeter Johnson <peter@tortall.net>2001-08-19 05:41:01 +0000
commitae600ce4425b48a59b940b520bc9b3241ac4a673 (patch)
tree8d98eb5058582df515201a8e463f90f1c96328e3 /frontends
parent8d62e17ce2b7d07b54359d8eb72441b630b93971 (diff)
downloadyasm-ae600ce4425b48a59b940b520bc9b3241ac4a673.tar.gz
Use STAILQ's for datavals and bytecodes.
svn path=/trunk/yasm/; revision=146
Diffstat (limited to 'frontends')
-rw-r--r--frontends/yasm/yasm.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/frontends/yasm/yasm.c b/frontends/yasm/yasm.c
index f1075991..54eba8f4 100644
--- a/frontends/yasm/yasm.c
+++ b/frontends/yasm/yasm.c
@@ -1,4 +1,4 @@
-/* $Id: yasm.c,v 1.7 2001/08/19 03:52:58 peter Exp $
+/* $Id: yasm.c,v 1.8 2001/08/19 05:41:01 peter Exp $
* Program entry point, command line parsing
*
* Copyright (C) 2001 Peter Johnson
@@ -19,9 +19,14 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include "util.h"
#include "bytecode.h"
#include "section.h"
#include "outfmt.h"