]> granicus.if.org Git - yasm/commitdiff
Add RCSID().
authorPeter Johnson <peter@tortall.net>
Sun, 19 Aug 2001 07:46:52 +0000 (07:46 -0000)
committerPeter Johnson <peter@tortall.net>
Sun, 19 Aug 2001 07:46:52 +0000 (07:46 -0000)
svn path=/trunk/yasm/; revision=151

38 files changed:
frontends/yasm/yasm.c
libyasm/bytecode.c
libyasm/errwarn.c
libyasm/expr.c
libyasm/symrec.c
libyasm/xstrdup.c
modules/arch/x86/expr.c
modules/arch/x86/x86expr.c
modules/objfmts/dbg/dbg-objfmt.c
modules/objfmts/dbg/objfmt.c
modules/objfmts/dbg/outfmt.c
modules/parsers/nasm/bison.y.in
modules/parsers/nasm/nasm-bison.y
modules/parsers/nasm/nasm-parser.c
modules/parsers/nasm/parser.c
modules/parsers/nasm/token.l.in
modules/preprocs/raw/preproc.c
modules/preprocs/raw/raw-preproc.c
src/arch/x86/expr.c
src/arch/x86/x86expr.c
src/bytecode.c
src/errwarn.c
src/expr.c
src/main.c
src/objfmts/dbg/dbg-objfmt.c
src/objfmts/dbg/objfmt.c
src/objfmts/dbg/outfmt.c
src/parsers/nasm/bison.y.in
src/parsers/nasm/nasm-bison.y
src/parsers/nasm/nasm-parser.c
src/parsers/nasm/parser.c
src/parsers/nasm/token.l.in
src/preprocs/raw/preproc.c
src/preprocs/raw/raw-preproc.c
src/strdup.c
src/strtoul.c
src/symrec.c
src/xstrdup.c

index 05f79741c93088ea3fb066318f468fa96f17c648..b5c2f61ce33bb527387ac72522cebcba06233f60 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: yasm.c,v 1.9 2001/08/19 07:33:47 peter Exp $
+/* $Id: yasm.c,v 1.10 2001/08/19 07:46:52 peter Exp $
  * Program entry point, command line parsing
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -38,6 +38,8 @@
 #include "preproc.h"
 #include "parser.h"
 
+RCSID("$Id: yasm.c,v 1.10 2001/08/19 07:46:52 peter Exp $");
+
 char *filename = (char *)NULL;
 unsigned int line_number = 1;
 unsigned int mode_bits = 32;
index d902da2ee3bbefd6d104cefd82d1aba76f787ecc..347a45eb81d5a3bf6f1473a8dfa654200f47cc02 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: bytecode.c,v 1.18 2001/08/19 07:33:47 peter Exp $
+/* $Id: bytecode.c,v 1.19 2001/08/19 07:46:52 peter Exp $
  * Bytecode utility functions
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -38,6 +38,8 @@
 
 #include "bytecode.h"
 
+RCSID("$Id: bytecode.c,v 1.19 2001/08/19 07:46:52 peter Exp $");
+
 /* Static structures for when NULL is passed to conversion functions. */
 /*  for Convert*ToEA() */
 static effaddr eff_static;
index 45ad973e246c729bed1f33c032e2b3892f3eeb17..c802a9a4d83d437e2cef45c8f99834aff9b701cc 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: errwarn.c,v 1.21 2001/08/19 07:33:47 peter Exp $
+/* $Id: errwarn.c,v 1.22 2001/08/19 07:46:52 peter Exp $
  * Error and warning reporting and related functions.
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -37,6 +37,8 @@
 #include "globals.h"
 #include "errwarn.h"
 
+RCSID("$Id: errwarn.c,v 1.22 2001/08/19 07:46:52 peter Exp $");
+
 /* Total error count for entire assembler run.
  * Assembler should exit with EXIT_FAILURE if this is >= 0 on finish. */
 unsigned int error_count = 0;
index cc4656db394bb85ea1f7301eea8ea7127c16cb8c..9a3b2104f5edef6b693b3ec1ad56cba0c019c70b 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: expr.c,v 1.6 2001/08/19 07:33:47 peter Exp $
+/* $Id: expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $
  * Expression handling
  *
  *  Copyright (C) 2001  Michael Urman
@@ -37,6 +37,8 @@
 #include "expr.h"
 #include "symrec.h"
 
+RCSID("$Id: expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $");
+
 /* allocate a new expression node, with children as defined.
  * If it's a unary operator, put the element on the right */
 expr *
index 7ef929824a2700dbc7020e0f64855531635145ed..153607bda117b9eebba3ae638d3db1fc57dc257e 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: symrec.c,v 1.7 2001/08/19 07:33:47 peter Exp $
+/* $Id: symrec.c,v 1.8 2001/08/19 07:46:52 peter Exp $
  * Symbol table handling
  *
  *  Copyright (C) 2001  Michael Urman
@@ -34,6 +34,8 @@
 #include "errwarn.h"
 #include "symrec.h"
 
+RCSID("$Id: symrec.c,v 1.8 2001/08/19 07:46:52 peter Exp $");
+
 /* private functions */
 static symtab *symtab_get(char *);
 static symtab *symtab_new(char *, SymType);
index 42a42707afa30e0b04d786477a63a036835b3d39..47f0bed6406d32a783f442284cb812d58a4d4530 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: xstrdup.c,v 1.3 2001/08/19 07:33:47 peter Exp $
+/* $Id: xstrdup.c,v 1.4 2001/08/19 07:46:52 peter Exp $
  * strdup() implementation for systems that don't have it.
  *
  * Copyright (c) 1988, 1993
@@ -54,6 +54,8 @@ void memcpy(void *, const void *, size_t);
 # endif
 #endif
 
+RCSID("$Id: xstrdup.c,v 1.4 2001/08/19 07:46:52 peter Exp $");
+
 char *
 strdup(const char *str)
 {
index cc4656db394bb85ea1f7301eea8ea7127c16cb8c..9a3b2104f5edef6b693b3ec1ad56cba0c019c70b 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: expr.c,v 1.6 2001/08/19 07:33:47 peter Exp $
+/* $Id: expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $
  * Expression handling
  *
  *  Copyright (C) 2001  Michael Urman
@@ -37,6 +37,8 @@
 #include "expr.h"
 #include "symrec.h"
 
+RCSID("$Id: expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $");
+
 /* allocate a new expression node, with children as defined.
  * If it's a unary operator, put the element on the right */
 expr *
index 27502b3b0ce1f0a8cefcf3df36d63cfdd6c55ffe..3f0be59e61c0e66807cf26bd6fd46263871c28c6 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: x86expr.c,v 1.6 2001/08/19 07:33:47 peter Exp $
+/* $Id: x86expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $
  * Expression handling
  *
  *  Copyright (C) 2001  Michael Urman
@@ -37,6 +37,8 @@
 #include "expr.h"
 #include "symrec.h"
 
+RCSID("$Id: x86expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $");
+
 /* allocate a new expression node, with children as defined.
  * If it's a unary operator, put the element on the right */
 expr *
index 1d8c00a52fb875ad418d95ce2bbfefe2d17de2bb..eb41ca4379369c5c7a605927b7fcc98d75263327 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: dbg-objfmt.c,v 1.2 2001/08/19 07:33:47 peter Exp $
+/* $Id: dbg-objfmt.c,v 1.3 2001/08/19 07:46:52 peter Exp $
  * Debugging output format (used to debug output format module interface)
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -27,6 +27,8 @@
 
 #include "outfmt.h"
 
+RCSID("$Id: dbg-objfmt.c,v 1.3 2001/08/19 07:46:52 peter Exp $");
+
 /* Define outfmt structure -- see outfmt.h for details */
 outfmt dbg_outfmt = {
     "Trace of all info passed to output format module",
index af4014396bda07e76d856f2c3e7364766ba4d5b9..74eef231b90e5ffa17740c186faf8fa7728028e5 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: objfmt.c,v 1.2 2001/08/19 07:33:47 peter Exp $
+/* $Id: objfmt.c,v 1.3 2001/08/19 07:46:52 peter Exp $
  * Debugging output format (used to debug output format module interface)
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -27,6 +27,8 @@
 
 #include "outfmt.h"
 
+RCSID("$Id: objfmt.c,v 1.3 2001/08/19 07:46:52 peter Exp $");
+
 /* Define outfmt structure -- see outfmt.h for details */
 outfmt dbg_outfmt = {
     "Trace of all info passed to output format module",
index 6b818134dd0f6332bcb0eb4743e946025954fcb7..ec5de2b51e6b6d4f846d10be18fe4de904d9194b 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: outfmt.c,v 1.2 2001/08/19 07:33:47 peter Exp $
+/* $Id: outfmt.c,v 1.3 2001/08/19 07:46:52 peter Exp $
  * Debugging output format (used to debug output format module interface)
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -27,6 +27,8 @@
 
 #include "outfmt.h"
 
+RCSID("$Id: outfmt.c,v 1.3 2001/08/19 07:46:52 peter Exp $");
+
 /* Define outfmt structure -- see outfmt.h for details */
 outfmt dbg_outfmt = {
     "Trace of all info passed to output format module",
index 48b8a74c720eb7e17520ac8cac487be821c9c037..7c6667b8311d1772e146737808938194886f6d34 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: bison.y.in,v 1.26 2001/08/19 07:33:47 peter Exp $
+/* $Id: bison.y.in,v 1.27 2001/08/19 07:46:52 peter Exp $
  * Main bison parser
  *
  *  Copyright (C) 2001  Peter Johnson, Michael Urman
@@ -38,6 +38,8 @@
 
 #include "bytecode.h"
 
+RCSID("$Id: bison.y.in,v 1.27 2001/08/19 07:46:52 peter Exp $");
+
 #define YYDEBUG 1
 
 void init_table(void);
index 2b73d99645b41be2c1b9af2c3edd829b4657df67..26aac799b99f1c8aa153f46a9d347b3cc4d0c210 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: nasm-bison.y,v 1.26 2001/08/19 07:33:47 peter Exp $
+/* $Id: nasm-bison.y,v 1.27 2001/08/19 07:46:52 peter Exp $
  * Main bison parser
  *
  *  Copyright (C) 2001  Peter Johnson, Michael Urman
@@ -38,6 +38,8 @@
 
 #include "bytecode.h"
 
+RCSID("$Id: nasm-bison.y,v 1.27 2001/08/19 07:46:52 peter Exp $");
+
 #define YYDEBUG 1
 
 void init_table(void);
index 4d02b6ec79421e56c6bb2dbb438e29ce723fe9f3..87d05989f33f13c3eb91b88046a37ba898b44586 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: nasm-parser.c,v 1.5 2001/08/19 07:33:47 peter Exp $
+/* $Id: nasm-parser.c,v 1.6 2001/08/19 07:46:52 peter Exp $
  * NASM-compatible parser
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -33,6 +33,8 @@
 #include "preproc.h"
 #include "parser.h"
 
+RCSID("$Id: nasm-parser.c,v 1.6 2001/08/19 07:46:52 peter Exp $");
+
 extern FILE *nasm_parser_in;
 extern int nasm_parser_debug;
 
index bac3b17a8440dd25ee4de98c404bd0c5cfa02876..6ec060bd78c7d3440f84b25b83cfda6d77e236b2 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: parser.c,v 1.5 2001/08/19 07:33:47 peter Exp $
+/* $Id: parser.c,v 1.6 2001/08/19 07:46:52 peter Exp $
  * NASM-compatible parser
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -33,6 +33,8 @@
 #include "preproc.h"
 #include "parser.h"
 
+RCSID("$Id: parser.c,v 1.6 2001/08/19 07:46:52 peter Exp $");
+
 extern FILE *nasm_parser_in;
 extern int nasm_parser_debug;
 
index 46771ede801bd8084ed26c067eec5cb749092673..5cc850a53df28c26f0dd7771ac9502cda092d660 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: token.l.in,v 1.14 2001/08/19 07:33:47 peter Exp $
+/* $Id: token.l.in,v 1.15 2001/08/19 07:46:52 peter Exp $
  * Main lexer
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -39,6 +39,8 @@
 
 #include "bison.h"
 
+RCSID("$Id: token.l.in,v 1.15 2001/08/19 07:46:52 peter Exp $");
+
 #define yylval nasm_parser_lval
 
 extern int (*nasm_parser_yyinput) (char *buf, int max_size);
index a4fb57766e39609a5a4ef0a6addd6c682bbb6406..c21980f4db656f579c7dd8734487aeef852e0376 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: preproc.c,v 1.4 2001/08/19 07:33:47 peter Exp $
+/* $Id: preproc.c,v 1.5 2001/08/19 07:46:52 peter Exp $
  * Raw preprocessor (preforms NO preprocessing)
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -23,6 +23,8 @@
 # include "config.h"
 #endif
 
+#include "util.h"
+
 #include <stdio.h>
 
 #include "errwarn.h"
@@ -30,6 +32,8 @@
 #include "outfmt.h"
 #include "preproc.h"
 
+RCSID("$Id: preproc.c,v 1.5 2001/08/19 07:46:52 peter Exp $");
+
 static int is_interactive;
 static FILE *in;
 
index d188283fdb6fd63e84a4e8dcc0c844efeac4fe34..319a4343edcc5420bba0155aaed7228161980a46 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: raw-preproc.c,v 1.4 2001/08/19 07:33:47 peter Exp $
+/* $Id: raw-preproc.c,v 1.5 2001/08/19 07:46:52 peter Exp $
  * Raw preprocessor (preforms NO preprocessing)
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -23,6 +23,8 @@
 # include "config.h"
 #endif
 
+#include "util.h"
+
 #include <stdio.h>
 
 #include "errwarn.h"
@@ -30,6 +32,8 @@
 #include "outfmt.h"
 #include "preproc.h"
 
+RCSID("$Id: raw-preproc.c,v 1.5 2001/08/19 07:46:52 peter Exp $");
+
 static int is_interactive;
 static FILE *in;
 
index cc4656db394bb85ea1f7301eea8ea7127c16cb8c..9a3b2104f5edef6b693b3ec1ad56cba0c019c70b 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: expr.c,v 1.6 2001/08/19 07:33:47 peter Exp $
+/* $Id: expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $
  * Expression handling
  *
  *  Copyright (C) 2001  Michael Urman
@@ -37,6 +37,8 @@
 #include "expr.h"
 #include "symrec.h"
 
+RCSID("$Id: expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $");
+
 /* allocate a new expression node, with children as defined.
  * If it's a unary operator, put the element on the right */
 expr *
index 27502b3b0ce1f0a8cefcf3df36d63cfdd6c55ffe..3f0be59e61c0e66807cf26bd6fd46263871c28c6 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: x86expr.c,v 1.6 2001/08/19 07:33:47 peter Exp $
+/* $Id: x86expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $
  * Expression handling
  *
  *  Copyright (C) 2001  Michael Urman
@@ -37,6 +37,8 @@
 #include "expr.h"
 #include "symrec.h"
 
+RCSID("$Id: x86expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $");
+
 /* allocate a new expression node, with children as defined.
  * If it's a unary operator, put the element on the right */
 expr *
index d902da2ee3bbefd6d104cefd82d1aba76f787ecc..347a45eb81d5a3bf6f1473a8dfa654200f47cc02 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: bytecode.c,v 1.18 2001/08/19 07:33:47 peter Exp $
+/* $Id: bytecode.c,v 1.19 2001/08/19 07:46:52 peter Exp $
  * Bytecode utility functions
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -38,6 +38,8 @@
 
 #include "bytecode.h"
 
+RCSID("$Id: bytecode.c,v 1.19 2001/08/19 07:46:52 peter Exp $");
+
 /* Static structures for when NULL is passed to conversion functions. */
 /*  for Convert*ToEA() */
 static effaddr eff_static;
index 45ad973e246c729bed1f33c032e2b3892f3eeb17..c802a9a4d83d437e2cef45c8f99834aff9b701cc 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: errwarn.c,v 1.21 2001/08/19 07:33:47 peter Exp $
+/* $Id: errwarn.c,v 1.22 2001/08/19 07:46:52 peter Exp $
  * Error and warning reporting and related functions.
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -37,6 +37,8 @@
 #include "globals.h"
 #include "errwarn.h"
 
+RCSID("$Id: errwarn.c,v 1.22 2001/08/19 07:46:52 peter Exp $");
+
 /* Total error count for entire assembler run.
  * Assembler should exit with EXIT_FAILURE if this is >= 0 on finish. */
 unsigned int error_count = 0;
index cc4656db394bb85ea1f7301eea8ea7127c16cb8c..9a3b2104f5edef6b693b3ec1ad56cba0c019c70b 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: expr.c,v 1.6 2001/08/19 07:33:47 peter Exp $
+/* $Id: expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $
  * Expression handling
  *
  *  Copyright (C) 2001  Michael Urman
@@ -37,6 +37,8 @@
 #include "expr.h"
 #include "symrec.h"
 
+RCSID("$Id: expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $");
+
 /* allocate a new expression node, with children as defined.
  * If it's a unary operator, put the element on the right */
 expr *
index ca917c064b10e37fc8675cd6c69ad84b09f25617..17f52681bfca0a2449a085b8bde67adca8677777 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: main.c,v 1.9 2001/08/19 07:33:47 peter Exp $
+/* $Id: main.c,v 1.10 2001/08/19 07:46:52 peter Exp $
  * Program entry point, command line parsing
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -38,6 +38,8 @@
 #include "preproc.h"
 #include "parser.h"
 
+RCSID("$Id: main.c,v 1.10 2001/08/19 07:46:52 peter Exp $");
+
 char *filename = (char *)NULL;
 unsigned int line_number = 1;
 unsigned int mode_bits = 32;
index 1d8c00a52fb875ad418d95ce2bbfefe2d17de2bb..eb41ca4379369c5c7a605927b7fcc98d75263327 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: dbg-objfmt.c,v 1.2 2001/08/19 07:33:47 peter Exp $
+/* $Id: dbg-objfmt.c,v 1.3 2001/08/19 07:46:52 peter Exp $
  * Debugging output format (used to debug output format module interface)
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -27,6 +27,8 @@
 
 #include "outfmt.h"
 
+RCSID("$Id: dbg-objfmt.c,v 1.3 2001/08/19 07:46:52 peter Exp $");
+
 /* Define outfmt structure -- see outfmt.h for details */
 outfmt dbg_outfmt = {
     "Trace of all info passed to output format module",
index af4014396bda07e76d856f2c3e7364766ba4d5b9..74eef231b90e5ffa17740c186faf8fa7728028e5 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: objfmt.c,v 1.2 2001/08/19 07:33:47 peter Exp $
+/* $Id: objfmt.c,v 1.3 2001/08/19 07:46:52 peter Exp $
  * Debugging output format (used to debug output format module interface)
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -27,6 +27,8 @@
 
 #include "outfmt.h"
 
+RCSID("$Id: objfmt.c,v 1.3 2001/08/19 07:46:52 peter Exp $");
+
 /* Define outfmt structure -- see outfmt.h for details */
 outfmt dbg_outfmt = {
     "Trace of all info passed to output format module",
index 6b818134dd0f6332bcb0eb4743e946025954fcb7..ec5de2b51e6b6d4f846d10be18fe4de904d9194b 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: outfmt.c,v 1.2 2001/08/19 07:33:47 peter Exp $
+/* $Id: outfmt.c,v 1.3 2001/08/19 07:46:52 peter Exp $
  * Debugging output format (used to debug output format module interface)
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -27,6 +27,8 @@
 
 #include "outfmt.h"
 
+RCSID("$Id: outfmt.c,v 1.3 2001/08/19 07:46:52 peter Exp $");
+
 /* Define outfmt structure -- see outfmt.h for details */
 outfmt dbg_outfmt = {
     "Trace of all info passed to output format module",
index 48b8a74c720eb7e17520ac8cac487be821c9c037..7c6667b8311d1772e146737808938194886f6d34 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: bison.y.in,v 1.26 2001/08/19 07:33:47 peter Exp $
+/* $Id: bison.y.in,v 1.27 2001/08/19 07:46:52 peter Exp $
  * Main bison parser
  *
  *  Copyright (C) 2001  Peter Johnson, Michael Urman
@@ -38,6 +38,8 @@
 
 #include "bytecode.h"
 
+RCSID("$Id: bison.y.in,v 1.27 2001/08/19 07:46:52 peter Exp $");
+
 #define YYDEBUG 1
 
 void init_table(void);
index 2b73d99645b41be2c1b9af2c3edd829b4657df67..26aac799b99f1c8aa153f46a9d347b3cc4d0c210 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: nasm-bison.y,v 1.26 2001/08/19 07:33:47 peter Exp $
+/* $Id: nasm-bison.y,v 1.27 2001/08/19 07:46:52 peter Exp $
  * Main bison parser
  *
  *  Copyright (C) 2001  Peter Johnson, Michael Urman
@@ -38,6 +38,8 @@
 
 #include "bytecode.h"
 
+RCSID("$Id: nasm-bison.y,v 1.27 2001/08/19 07:46:52 peter Exp $");
+
 #define YYDEBUG 1
 
 void init_table(void);
index 4d02b6ec79421e56c6bb2dbb438e29ce723fe9f3..87d05989f33f13c3eb91b88046a37ba898b44586 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: nasm-parser.c,v 1.5 2001/08/19 07:33:47 peter Exp $
+/* $Id: nasm-parser.c,v 1.6 2001/08/19 07:46:52 peter Exp $
  * NASM-compatible parser
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -33,6 +33,8 @@
 #include "preproc.h"
 #include "parser.h"
 
+RCSID("$Id: nasm-parser.c,v 1.6 2001/08/19 07:46:52 peter Exp $");
+
 extern FILE *nasm_parser_in;
 extern int nasm_parser_debug;
 
index bac3b17a8440dd25ee4de98c404bd0c5cfa02876..6ec060bd78c7d3440f84b25b83cfda6d77e236b2 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: parser.c,v 1.5 2001/08/19 07:33:47 peter Exp $
+/* $Id: parser.c,v 1.6 2001/08/19 07:46:52 peter Exp $
  * NASM-compatible parser
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -33,6 +33,8 @@
 #include "preproc.h"
 #include "parser.h"
 
+RCSID("$Id: parser.c,v 1.6 2001/08/19 07:46:52 peter Exp $");
+
 extern FILE *nasm_parser_in;
 extern int nasm_parser_debug;
 
index 46771ede801bd8084ed26c067eec5cb749092673..5cc850a53df28c26f0dd7771ac9502cda092d660 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: token.l.in,v 1.14 2001/08/19 07:33:47 peter Exp $
+/* $Id: token.l.in,v 1.15 2001/08/19 07:46:52 peter Exp $
  * Main lexer
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -39,6 +39,8 @@
 
 #include "bison.h"
 
+RCSID("$Id: token.l.in,v 1.15 2001/08/19 07:46:52 peter Exp $");
+
 #define yylval nasm_parser_lval
 
 extern int (*nasm_parser_yyinput) (char *buf, int max_size);
index a4fb57766e39609a5a4ef0a6addd6c682bbb6406..c21980f4db656f579c7dd8734487aeef852e0376 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: preproc.c,v 1.4 2001/08/19 07:33:47 peter Exp $
+/* $Id: preproc.c,v 1.5 2001/08/19 07:46:52 peter Exp $
  * Raw preprocessor (preforms NO preprocessing)
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -23,6 +23,8 @@
 # include "config.h"
 #endif
 
+#include "util.h"
+
 #include <stdio.h>
 
 #include "errwarn.h"
@@ -30,6 +32,8 @@
 #include "outfmt.h"
 #include "preproc.h"
 
+RCSID("$Id: preproc.c,v 1.5 2001/08/19 07:46:52 peter Exp $");
+
 static int is_interactive;
 static FILE *in;
 
index d188283fdb6fd63e84a4e8dcc0c844efeac4fe34..319a4343edcc5420bba0155aaed7228161980a46 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: raw-preproc.c,v 1.4 2001/08/19 07:33:47 peter Exp $
+/* $Id: raw-preproc.c,v 1.5 2001/08/19 07:46:52 peter Exp $
  * Raw preprocessor (preforms NO preprocessing)
  *
  *  Copyright (C) 2001  Peter Johnson
@@ -23,6 +23,8 @@
 # include "config.h"
 #endif
 
+#include "util.h"
+
 #include <stdio.h>
 
 #include "errwarn.h"
@@ -30,6 +32,8 @@
 #include "outfmt.h"
 #include "preproc.h"
 
+RCSID("$Id: raw-preproc.c,v 1.5 2001/08/19 07:46:52 peter Exp $");
+
 static int is_interactive;
 static FILE *in;
 
index f92f3c2358b971a27be7c3c92769b9eeee155e42..310da43ed9c49e84aff933b1cab8538eddc47ab8 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: strdup.c,v 1.3 2001/08/19 07:33:47 peter Exp $
+/* $Id: strdup.c,v 1.4 2001/08/19 07:46:52 peter Exp $
  * strdup() implementation for systems that don't have it.
  *
  * Copyright (c) 1988, 1993
@@ -54,6 +54,8 @@ void memcpy(void *, const void *, size_t);
 # endif
 #endif
 
+RCSID("$Id: strdup.c,v 1.4 2001/08/19 07:46:52 peter Exp $");
+
 char *
 strdup(const char *str)
 {
index a51bac643c96ef954249a6c67953189e62f526a4..3be4cdb077f4050c2f2cb3d20ea883fd5a39da41 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: strtoul.c,v 1.2 2001/08/19 07:33:47 peter Exp $
+/* $Id: strtoul.c,v 1.3 2001/08/19 07:46:52 peter Exp $
  * strtoul() implementation for systems that don't have it.
  *
  * Copyright (c) 1990, 1993
@@ -49,6 +49,8 @@ static char sccsid[] = "@(#)strtoul.c 8.1 (Berkeley) 6/4/93";
 # include <stdlib.h>
 #endif
 
+RCSID("$Id: strtoul.c,v 1.3 2001/08/19 07:46:52 peter Exp $");
+
 /*
  * Convert a string to an unsigned long integer.
  *
index 7ef929824a2700dbc7020e0f64855531635145ed..153607bda117b9eebba3ae638d3db1fc57dc257e 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: symrec.c,v 1.7 2001/08/19 07:33:47 peter Exp $
+/* $Id: symrec.c,v 1.8 2001/08/19 07:46:52 peter Exp $
  * Symbol table handling
  *
  *  Copyright (C) 2001  Michael Urman
@@ -34,6 +34,8 @@
 #include "errwarn.h"
 #include "symrec.h"
 
+RCSID("$Id: symrec.c,v 1.8 2001/08/19 07:46:52 peter Exp $");
+
 /* private functions */
 static symtab *symtab_get(char *);
 static symtab *symtab_new(char *, SymType);
index 42a42707afa30e0b04d786477a63a036835b3d39..47f0bed6406d32a783f442284cb812d58a4d4530 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: xstrdup.c,v 1.3 2001/08/19 07:33:47 peter Exp $
+/* $Id: xstrdup.c,v 1.4 2001/08/19 07:46:52 peter Exp $
  * strdup() implementation for systems that don't have it.
  *
  * Copyright (c) 1988, 1993
@@ -54,6 +54,8 @@ void memcpy(void *, const void *, size_t);
 # endif
 #endif
 
+RCSID("$Id: xstrdup.c,v 1.4 2001/08/19 07:46:52 peter Exp $");
+
 char *
 strdup(const char *str)
 {