Added RCS identification.
authorkeie <none@none>
Fri, 17 Aug 1984 14:44:24 +0000 (14:44 +0000)
committerkeie <none@none>
Fri, 17 Aug 1984 14:44:24 +0000 (14:44 +0000)
20 files changed:
util/ack/Makefile
util/ack/ack.h
util/ack/data.c
util/ack/data.h
util/ack/dmach.h
util/ack/files.c
util/ack/grows.c
util/ack/grows.h
util/ack/list.c
util/ack/list.h
util/ack/main.c
util/ack/malloc.c
util/ack/mktables.c
util/ack/rmach.c
util/ack/run.c
util/ack/scan.c
util/ack/svars.c
util/ack/trans.c
util/ack/trans.h
util/ack/util.c

index 3b985e7..9571da5 100644 (file)
@@ -1,3 +1,4 @@
+# $Header$
 HFILES=ack.h list.h trans.h data.h dmach.h grows.h
 DSRC=list.c data.c main.c scan.c svars.c trans.c util.c rmach.c run.c grows.c\
      files.c
index b084a64..0c1195f 100644 (file)
@@ -1,3 +1,7 @@
+#ifndef NORCSID
+#define RCS_ACK "$Header$"
+#endif
+
 /****************************************************************************/
 /*                      User settable options                               */
 /****************************************************************************/
index b92fc8b..56e1b7d 100644 (file)
@@ -2,8 +2,15 @@
 #include "list.h"
 #include "trans.h"
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+#endif
 
 #undef EXTERN
 #define EXTERN
 
 #include "data.h"
+
+#ifndef NORCSID
+static char rcs_data[] = RCS_DATA ;
+#endif
index 23af80c..53f97b7 100644 (file)
@@ -1,3 +1,7 @@
+#ifndef NORCSID
+#define RCS_DATA "$Header$"
+#endif
+
 EXTERN  char            *stopsuffix;    /* Suffix to stop at */
 EXTERN  char            *machine;       /* The machine id */
 EXTERN  char            *rts;           /* The runtime-system id */
index 1e7880a..3e8d853 100644 (file)
@@ -4,6 +4,10 @@
 /*                                                             */
 /***************************************************************/
 
+#ifndef NORCSID
+#define RCS_DMACH "$Header$"
+#endif
+
 
 typedef struct {
        char *ma_name ;         /* The name of the machine */
index 83f14cd..e67768b 100644 (file)
 #include "data.h"
 #include "../../h/em_path.h"
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+#endif
+
 setfiles(phase) register trf *phase ; {
        /* Set the out structure according to the in structure,
           the transformation and some global data */
index 0b870e0..a4c5f91 100644 (file)
 #include "ack.h"
 #include "grows.h"
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+static char rcs_grows[] = RCS_GROWS ;
+#endif
+
 gr_add(id,c) register growstring *id ; char c ; {
        if ( id->gr_size==id->gr_max) {
                if ( id->gr_size==0 ) { /* The first time */
index 9e7d55c..f048aba 100644 (file)
@@ -1,3 +1,7 @@
+#ifndef NORCSID
+#define RCS_GROWS "$Header$"
+#endif
+
 /* struct used to identify and do bookkeeping for growing strings */
 
 typedef struct {
index fb28fd2..9b0097e 100644 (file)
 #include "ack.h"
 #include "list.h"
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+static char rcs_list[] = RCS_LIST ;
+#endif
+
 /* List handling, operations allowed:
        adding strings to the list,
        throwing away whole lists,
index d39aea4..bec3bfa 100644 (file)
@@ -1,3 +1,7 @@
+#ifndef NORCSID
+#define RCS_LIST "$Header$"
+#endif
+
 struct ca_elem {
        struct ca_elem          *ca_next; /* The link */
        char                    *ca_cont; /* The contents */
index bc0abf9..4713834 100644 (file)
 #include "data.h"
 #include <signal.h>
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+static char rcs_ack[] = RCS_ACK ;
+#endif
+
 static int sigs[] = { SIGINT, SIGHUP, SIGTERM, 0 } ;
 
 extern  char    *getenv();
index b9ec3df..87a4bce 100644 (file)
@@ -29,6 +29,10 @@ char *s;
 #define ASSERT(p)
 #endif
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+#endif
+
 /*      avoid break bug */
 #ifdef pdp11
 #define GRANULE 64
index fffaa03..9adb9f4 100644 (file)
 #include <stdio.h>
 #include <ctype.h>
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+#endif
+
 char *fname = 0 ;
 char dname[200] ;
 char *tail ;
index b0d8309..a8c83e5 100644 (file)
 #include "data.h"
 #include <stdio.h>
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+static char rcs_dmach[] = RCS_DMACH ;
+#endif
+
 /************************************************************************/
 /*                                                                      */
 /*           Read machine definitions and transformations               */
index a55c759..2874215 100644 (file)
 #include "data.h"
 #include <signal.h>
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+#endif
+
 #define ARG_MORE  40            /* The size of args chunks to allocate */
 
 static char      **arglist ;    /* The first argument */
index 63a5b7c..708758f 100644 (file)
 #include "trans.h"
 #include "data.h"
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+#endif
+
 enum f_path setpath() { /* Try to find a transformation path */
 
        start_scan();
index 4749fe1..c6cd6b4 100644 (file)
 
 #include "ack.h"
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+#endif
+
 /*      The processing of string valued variables,
        this is an almost self contained module.
 
index 3eeab98..0d83455 100644 (file)
 #include "grows.h"
 #include "data.h"
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+static char rcs_trans[] = RCS_TRANS ;
+#endif
+
 /****************************************************************************/
 /*      Routines for transforming from one file type to another             */
 /****************************************************************************/
index 7e305d6..a377515 100644 (file)
@@ -1,3 +1,7 @@
+#ifndef NORCSID
+#define RCS_TRANS "$Header$"
+#endif
+
 /* This structure is the center of all actions */
 /* It contains the description of all phases,
    the suffices they consume and produce and various properties */
index ac32f38..77e6f18 100644 (file)
 #include <ctype.h>
 #include <stdio.h>
 
+#ifndef NORCSID
+static char rcs_id[] = "$Header$" ;
+#endif
+
 extern  char    *progname ;
 extern  int     w_flag ;
 extern  int     n_error;