diff options
| author | Mark Eichin <eichin@mit.edu> | 1994-08-18 20:48:46 +0000 |
|---|---|---|
| committer | Mark Eichin <eichin@mit.edu> | 1994-08-18 20:48:46 +0000 |
| commit | a877110220930973554defcee3d6f47ed2b5d2ae (patch) | |
| tree | 7b75d5d56d9b9752a72ccb2bd2c26e4a72b100e8 /src/util/et | |
| parent | e2e2b3e4b2e962a39b0d7feb2530d0cc556acd2d (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/et')
| -rw-r--r-- | src/util/et/com_err.c | 4 | ||||
| -rw-r--r-- | src/util/et/compile_et.c | 7 | ||||
| -rw-r--r-- | src/util/et/error_message.c | 6 | ||||
| -rw-r--r-- | src/util/et/error_table.y | 4 | ||||
| -rw-r--r-- | src/util/et/et_lex.lex.l | 3 | ||||
| -rw-r--r-- | src/util/et/et_name.c | 2 | ||||
| -rw-r--r-- | src/util/et/init_et.c | 8 | ||||
| -rw-r--r-- | src/util/et/vfprintf.c | 4 |
8 files changed, 4 insertions, 34 deletions
diff --git a/src/util/et/com_err.c b/src/util/et/com_err.c index 7cc68939c..f6fb65dae 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 e9e2a6dc1..7883a5802 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 21c926caa..507e0f173 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 f411d3ff8..ad4ffb1ec 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 b3990993d..b363e8ca4 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 19da71d30..044302b8d 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 856f0fdc2..a7bfc9089 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 94f0fb582..65589923e 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> |
