summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorMark Eichin <eichin@mit.edu>1994-08-18 20:48:46 +0000
committerMark Eichin <eichin@mit.edu>1994-08-18 20:48:46 +0000
commita877110220930973554defcee3d6f47ed2b5d2ae (patch)
tree7b75d5d56d9b9752a72ccb2bd2c26e4a72b100e8 /src/util
parente2e2b3e4b2e962a39b0d7feb2530d0cc556acd2d (diff)
stamp out rcs keywords
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4186 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util')
-rw-r--r--src/util/et/com_err.c4
-rw-r--r--src/util/et/compile_et.c7
-rw-r--r--src/util/et/error_message.c6
-rw-r--r--src/util/et/error_table.y4
-rw-r--r--src/util/et/et_lex.lex.l3
-rw-r--r--src/util/et/et_name.c2
-rw-r--r--src/util/et/init_et.c8
-rw-r--r--src/util/et/vfprintf.c4
-rw-r--r--src/util/ss/execute_cmd.c4
-rw-r--r--src/util/ss/invocation.c4
-rw-r--r--src/util/ss/listen.c8
-rw-r--r--src/util/ss/mk_cmds.c3
-rw-r--r--src/util/ss/parse.c4
-rw-r--r--src/util/ss/prompt.c6
-rw-r--r--src/util/ss/test_ss.c32
-rw-r--r--src/util/unifdef/unifdef.c4
16 files changed, 9 insertions, 94 deletions
diff --git a/src/util/et/com_err.c b/src/util/et/com_err.c
index 7cc68939c2..f6fb65dae7 100644
--- a/src/util/et/com_err.c
+++ b/src/util/et/com_err.c
@@ -27,10 +27,6 @@
#undef com_err
#endif
-#if ! lint
-static const char rcsid[] =
- "$Header$";
-#endif /* ! lint */
static void
#ifdef __STDC__
diff --git a/src/util/et/compile_et.c b/src/util/et/compile_et.c
index e9e2a6dc18..7883a58020 100644
--- a/src/util/et/compile_et.c
+++ b/src/util/et/compile_et.c
@@ -22,9 +22,6 @@
#ifndef lint
static const char copyright[] =
"Copyright 1987,1988 by MIT Student Information Processing Board";
-
-static const char rcsid_compile_et_c[] =
- "$Header$";
#endif
extern char *gensym();
@@ -301,9 +298,7 @@ int yyerror(s) char *s; {
* specifies the terms and conditions for redistribution.
*/
-#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)strcasecmp.c 1.3 (Berkeley) 8/3/87";
-#endif
+/* based on @(#)strcasecmp.c 1.3 (Berkeley) 8/3/87 */
/*
* This array is designed for mapping upper and lower case letter
diff --git a/src/util/et/error_message.c b/src/util/et/error_message.c
index 21c926caa9..507e0f1730 100644
--- a/src/util/et/error_message.c
+++ b/src/util/et/error_message.c
@@ -1,7 +1,5 @@
/*
- * $Header$
- * $Source$
- * $Locker$
+ * util/et/error_message.c
*
* Copyright 1987 by the Student Information Processing Board
* of the Massachusetts Institute of Technology
@@ -14,8 +12,6 @@
#include "mit-sipb-copyright.h"
#include "internal.h"
-static const char rcsid[] =
- "$Header$";
static const char copyright[] =
"Copyright 1986, 1987, 1988 by the Student Information Processing Board\nand the department of Information Systems\nof the Massachusetts Institute of Technology";
diff --git a/src/util/et/error_table.y b/src/util/et/error_table.y
index f411d3ff8a..ad4ffb1ec1 100644
--- a/src/util/et/error_table.y
+++ b/src/util/et/error_table.y
@@ -74,10 +74,6 @@ description : QUOTED_STRING
#include "error_table.h"
#include "mit-sipb-copyright.h"
-#ifndef lint
-static char const rcsid_error_table_y[] =
- "$Header$";
-#endif
extern FILE *hfile, *cfile;
diff --git a/src/util/et/et_lex.lex.l b/src/util/et/et_lex.lex.l
index b3990993dd..b363e8ca4a 100644
--- a/src/util/et/et_lex.lex.l
+++ b/src/util/et/et_lex.lex.l
@@ -21,6 +21,3 @@ end return END;
. { return (*yytext); }
%%
-#ifndef lint
-static char rcsid_et_lex_lex_l[] = "$Header$";
-#endif
diff --git a/src/util/et/et_name.c b/src/util/et/et_name.c
index 19da71d308..044302b8dd 100644
--- a/src/util/et/et_name.c
+++ b/src/util/et/et_name.c
@@ -11,8 +11,6 @@
#ifndef lint
static const char copyright[] =
"Copyright 1987,1988 by Student Information Processing Board, Massachusetts Institute of Technology";
-static const char rcsid_et_name_c[] =
- "$Header$";
#endif
static const char char_set[] =
diff --git a/src/util/et/init_et.c b/src/util/et/init_et.c
index 856f0fdc24..a7bfc90898 100644
--- a/src/util/et/init_et.c
+++ b/src/util/et/init_et.c
@@ -1,7 +1,5 @@
/*
- * $Header$
- * $Source$
- * $Locker$
+ * util/et/init_et.c
*
* Copyright 1986, 1987, 1988 by MIT Information Systems and
* the MIT Student Information Processing Board.
@@ -17,10 +15,6 @@
#define const
#endif
-#ifndef lint
-static const char rcsid_init_et_c[] =
- "$Header$";
-#endif
extern char *malloc(), *realloc();
diff --git a/src/util/et/vfprintf.c b/src/util/et/vfprintf.c
index 94f0fb5824..65589923ee 100644
--- a/src/util/et/vfprintf.c
+++ b/src/util/et/vfprintf.c
@@ -15,9 +15,7 @@
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)vfprintf.c 5.2 (Berkeley) 6/27/88";
-#endif /* LIBC_SCCS and not lint */
+/* based on @(#)vfprintf.c 5.2 (Berkeley) 6/27/88 */
#include <stdio.h>
#include <varargs.h>
diff --git a/src/util/ss/execute_cmd.c b/src/util/ss/execute_cmd.c
index 9442f33925..52f07e2390 100644
--- a/src/util/ss/execute_cmd.c
+++ b/src/util/ss/execute_cmd.c
@@ -8,10 +8,6 @@
#include "copyright.h"
#include <stdio.h>
-#ifndef lint
-static char const rcsid[] =
- "$Header$";
-#endif
/*
* get_request(tbl, idx)
diff --git a/src/util/ss/invocation.c b/src/util/ss/invocation.c
index 678bbcd879..c7cef4877b 100644
--- a/src/util/ss/invocation.c
+++ b/src/util/ss/invocation.c
@@ -7,10 +7,6 @@
#include "copyright.h"
#define size sizeof(ss_data *)
-#ifndef lint
-static char const rcsid[] =
- "$Header$";
-#endif
int ss_create_invocation(subsystem_name, version_string, info_ptr,
request_table_ptr, code_ptr)
diff --git a/src/util/ss/listen.c b/src/util/ss/listen.c
index a15495309c..ccf3b6b835 100644
--- a/src/util/ss/listen.c
+++ b/src/util/ss/listen.c
@@ -1,8 +1,7 @@
/*
* Listener loop for subsystem library libss.a.
*
- * $Header$
- * $Locker$
+ * util/ss/listen.c
*
* Copyright 1987, 1988 by MIT Student Information Processing Board
*
@@ -19,11 +18,6 @@
#include <sgtty.h>
#endif
-#ifndef lint
-static char const rcs_id[] =
- "$Header$";
-#endif
-
static ss_data *current_info;
static jmp_buf listen_jmpb;
diff --git a/src/util/ss/mk_cmds.c b/src/util/ss/mk_cmds.c
index 21345e2180..fa69b593c6 100644
--- a/src/util/ss/mk_cmds.c
+++ b/src/util/ss/mk_cmds.c
@@ -1,8 +1,7 @@
/*
* make_commands.c
*
- * $Header$
- * $Locker$
+ * util/ss/mk_cmds.c
*
* Copyright 1987, 1988 by MIT Student Information Processing Board
*
diff --git a/src/util/ss/parse.c b/src/util/ss/parse.c
index e1dec31514..ddb6378781 100644
--- a/src/util/ss/parse.c
+++ b/src/util/ss/parse.c
@@ -7,10 +7,6 @@
#include "ss_internal.h"
#include "copyright.h"
-#ifndef lint
-static char const rcsid[] =
- "$Header$";
-#endif
enum parse_mode { WHITESPACE, TOKEN, QUOTED_STRING };
diff --git a/src/util/ss/prompt.c b/src/util/ss/prompt.c
index bc95d8223a..5df2731e0f 100644
--- a/src/util/ss/prompt.c
+++ b/src/util/ss/prompt.c
@@ -1,8 +1,7 @@
/*
* prompt.c: Routines for retrieving and setting a prompt.
*
- * $Header$
- * $Locker$
+ * util/ss/prompt.c
*
* Copyright 1987, 1988 by MIT Student Information Processing Board
*
@@ -13,9 +12,6 @@
#include <stdio.h>
#include "ss_internal.h"
-static const char rcsid[] =
- "$Header$";
-
ss_set_prompt(sci_idx, new_prompt)
int sci_idx;
char *new_prompt;
diff --git a/src/util/ss/test_ss.c b/src/util/ss/test_ss.c
index a7c7c5dabe..db0af6fbf4 100644
--- a/src/util/ss/test_ss.c
+++ b/src/util/ss/test_ss.c
@@ -1,37 +1,7 @@
/*
- *------------------------------------------------------------------
- *
- * $Source$
- * $Revision$
- * $Date$
- * $State$
- * $Author$
- * $Locker$
- *
- * $Log$
- * Revision 1.1 1993/06/03 12:31:25 tytso
- * Initial revision
- *
- * Revision 1.1 1991/12/21 16:41:47 eichin
- * Initial revision
- *
- * Revision 1.1 1991/12/21 11:13:39 eichin
- * Initial revision
- *
- * Revision 1.2 89/01/25 07:52:27 raeburn
- * *** empty log message ***
- *
- * Revision 1.1 88/01/23 15:50:26 raeburn
- * Initial revision
- *
- *
- *------------------------------------------------------------------
+ * util/ss/test_ss.c
*/
-#ifndef lint
-static char const rcsid_test_c[] =
- "$Header$";
-#endif /* lint */
#include <stdio.h>
#include "ss.h"
diff --git a/src/util/unifdef/unifdef.c b/src/util/unifdef/unifdef.c
index 399825ec77..7f4d3c8ec7 100644
--- a/src/util/unifdef/unifdef.c
+++ b/src/util/unifdef/unifdef.c
@@ -40,9 +40,7 @@ char copyright[] =
All rights reserved.\n";
#endif /* not lint */
-#ifndef lint
-static char sccsid[] = "@(#)unifdef.c 4.7 (Berkeley) 6/1/90";
-#endif /* not lint */
+/* based on @(#)unifdef.c 4.7 (Berkeley) 6/1/90 */
/*
* unifdef - remove ifdef'ed lines