home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume17 / com_err / patch04 < prev    next >
Internet Message Format  |  1991-03-12  |  20KB

  1. From: jik@Athena.MIT.EDU (Jonathan I. Kamens)
  2. Newsgroups: comp.sources.misc
  3. Subject: v17i038:  com_err - MIT SIPB Common Error Description Library, Patch04
  4. Message-ID: <1991Mar12.035230.10667@sparky.IMD.Sterling.COM>
  5. Date: 12 Mar 91 03:52:30 GMT
  6. Approved: kent@sparky.imd.sterling.com
  7. X-Checksum-Snefru: 51f334e3 3417248b 047cfefa 0b0fe7ae
  8.  
  9. Submitted-by: Jonathan I. Kamens <jik@Athena.MIT.EDU>
  10. Posting-number: Volume 17, Issue 38
  11. Archive-name: com_err/patch04
  12. Patch-To: com_err: Volume 17, Issue 27-29
  13.  
  14.   This patch brings the "com_err" package from patchlevel 3 to
  15. patchlevel 4.  Use "patch" in your com_err source directory to apply
  16. it.  However, before applying it, you should rename files in your
  17. source directory as follows:
  18.  
  19.     Original Filename    New Filename
  20.     ----------------------- ---------------------
  21.     com_err.texinfo.Z.uu    c_e.texinfo.Zu
  22.     error_message.c        error_msg.c
  23.     mit-sipb-copyright.h    sipb-copying.h
  24.     texinfo.tex.Z.uu    texinfo.tex.Zu
  25.  
  26. This change is to accomodate systems that are restricted to
  27. 14-character filenames.
  28.  
  29.   This patch accomplishes the following:
  30.  
  31. 1. I think I've finally got all of the RCS headers in sync, so after
  32.    this patch, I shouldn't have to send out any more patches that
  33.    change the RCS strings in files without changing anything else.
  34.  
  35. 2. I've prevented the Makefile from building profiled libraries.
  36.  
  37. 3. I've added rules to the Makefile to unpack the files that are
  38.    distributed packed.
  39.  
  40. 4. I've added BETA-TESTERS and ARCHIVE SITE sections to the README
  41.    file (please read them).
  42.  
  43. 5. I've made the SysV support a bit more consistent.
  44.  
  45. Jonathan Kamens                          USnail:
  46. MIT Project Athena                11 Ashford Terrace
  47. jik@Athena.MIT.EDU                Allston, MA  02134
  48. Office: 617-253-8085                  Home: 617-782-0710
  49. --------------------------
  50.  
  51. *** /tmp/delete/com_err/Makefile    Mon Mar 11 20:22:36 1991
  52. --- Makefile    Mon Mar 11 20:26:32 1991
  53. ***************
  54. *** 2,10 ****
  55.   # Makefile for error-table routines
  56.   #
  57.   # Copyright 1987, 1989, 1991 MIT Student Information Processing Board
  58. ! # For copyright info, see mit-sipb-copyright.h.
  59.   #
  60. ! #    $Header: /afs/athena.mit.edu/user/j/jik/delete/src/et/RCS/Makefile,v 1.10 91/02/22 07:50:07 jik Exp $
  61.   #    $Locker:  $
  62.   #
  63.   
  64. --- 2,10 ----
  65.   # Makefile for error-table routines
  66.   #
  67.   # Copyright 1987, 1989, 1991 MIT Student Information Processing Board
  68. ! # For copyright info, see sipb-copying.h.
  69.   #
  70. ! #    $Header: /afs/athena.mit.edu/astaff/project/delete/src/et/RCS/Makefile,v 1.11 91/02/28 18:45:34 jik Exp $
  71.   #    $Locker:  $
  72.   #
  73.   
  74. ***************
  75. *** 13,20 ****
  76.   DEFINES= 
  77.   CFLAGS=        -O $(DEFINES)
  78.   LINTFLAGS=     -uhvpb
  79. ! LINTFILES=     error_message.c et_name.c init_et.c com_err.c
  80. ! LIBOBJS=     error_message.o et_name.o init_et.o com_err.o
  81.   
  82.   BINDIR=        /usr/bin
  83.   INCDIR=        /usr/include
  84. --- 13,20 ----
  85.   DEFINES= 
  86.   CFLAGS=        -O $(DEFINES)
  87.   LINTFLAGS=     -uhvpb
  88. ! LINTFILES=     error_msg.c et_name.c init_et.c com_err.c
  89. ! LIBOBJS=     error_msg.o et_name.o init_et.o com_err.o
  90.   
  91.   BINDIR=        /usr/bin
  92.   INCDIR=        /usr/include
  93. ***************
  94. *** 22,37 ****
  95.   DOCDIR=        /usr/doc
  96.   DESTDIR=
  97.   
  98. ! CFILES=        com_err.c compile_et.c error_message.c et_name.c\
  99.           init_et.c strcasecmp.c test.c
  100.   HFILES=        com_err.h compiler.h error_table.h internal.h\
  101. !         mit-sipb-copyright.h 
  102.   MANS=        com_err.3 compile_et.1
  103.   YACCS=        error_table.y
  104.   LEXS=        et_lex.lex.l
  105.   ETS=        test1.et test2.et
  106.   FILES=        Makefile PATCHLEVEL README\
  107. !         com_err.texinfo.Z.uu texinfo.tex.Z.uu\
  108.           $(CFILES) $(HFILES) $(MANS) $(YACCS) $(LEXS) $(ETS)
  109.   
  110.   
  111. --- 22,37 ----
  112.   DOCDIR=        /usr/doc
  113.   DESTDIR=
  114.   
  115. ! CFILES=        com_err.c compile_et.c error_msg.c et_name.c\
  116.           init_et.c strcasecmp.c test.c
  117.   HFILES=        com_err.h compiler.h error_table.h internal.h\
  118. !         sipb-copying.h 
  119.   MANS=        com_err.3 compile_et.1
  120.   YACCS=        error_table.y
  121.   LEXS=        et_lex.lex.l
  122.   ETS=        test1.et test2.et
  123.   FILES=        Makefile PATCHLEVEL README\
  124. !         c_e.texinfo.Zu texinfo.tex.Zu\
  125.           $(CFILES) $(HFILES) $(MANS) $(YACCS) $(LEXS) $(ETS)
  126.   
  127.   
  128. ***************
  129. *** 76,82 ****
  130.   tags:    TAGS
  131.   
  132.   com_err.ps : com_err.dvi
  133. ! com_err.dvi: com_err.texinfo
  134.   
  135.   error_table.o: et_lex.lex.c
  136.   
  137. --- 76,82 ----
  138.   tags:    TAGS
  139.   
  140.   com_err.ps : com_err.dvi
  141. ! com_err.dvi: comerr.texinfo
  142.   
  143.   error_table.o: et_lex.lex.c
  144.   
  145. ***************
  146. *** 83,99 ****
  147.   install: all
  148.       install -c -s compile_et ${DESTDIR}${BINDIR}/compile_et
  149.       install -c -m 444 com_err.h ${DESTDIR}${INCDIR}/com_err.h
  150. !     install -c -m 444 mit-sipb-copyright.h \
  151. !                 ${DESTDIR}${INCDIR}/mit-sipb-copyright.h
  152.       install -c libcom_err.a ${DESTDIR}${LIBDIR}/libcom_err.a
  153.       ${RANLIB} ${DESTDIR}${LIBDIR}/libcom_err.a
  154. !     install -c com_err.texinfo ${DESTDIR}${DOCDIR}/com_err.texinfo
  155.       install -c com_err.3 ${DESTDIR}/usr/man/man3/com_err.3
  156.       install -c compile_et.1 ${DESTDIR}/usr/man/man1/compile_et.1
  157.   
  158. ! TAGS:    et_name.c error_message.c compile_et.c error_table.c \
  159.           lex.yy.c perror.c init_et.c
  160. !     etags et_name.c error_message.c compile_et.c \
  161.           error_table.c perror.c init_et.c
  162.   
  163.   libcom_err.a:    $(LIBOBJS)
  164. --- 83,99 ----
  165.   install: all
  166.       install -c -s compile_et ${DESTDIR}${BINDIR}/compile_et
  167.       install -c -m 444 com_err.h ${DESTDIR}${INCDIR}/com_err.h
  168. !     install -c -m 444 sipb-copying.h \
  169. !                 ${DESTDIR}${INCDIR}/sipb-copying.h
  170.       install -c libcom_err.a ${DESTDIR}${LIBDIR}/libcom_err.a
  171.       ${RANLIB} ${DESTDIR}${LIBDIR}/libcom_err.a
  172. !     install -c comerr.texinfo ${DESTDIR}${DOCDIR}/comerr.texinfo
  173.       install -c com_err.3 ${DESTDIR}/usr/man/man3/com_err.3
  174.       install -c compile_et.1 ${DESTDIR}/usr/man/man1/compile_et.1
  175.   
  176. ! TAGS:    et_name.c error_msg.c compile_et.c error_table.c \
  177.           lex.yy.c perror.c init_et.c
  178. !     etags et_name.c error_msg.c compile_et.c \
  179.           error_table.c perror.c init_et.c
  180.   
  181.   libcom_err.a:    $(LIBOBJS)
  182. ***************
  183. *** 128,133 ****
  184. --- 128,145 ----
  185.   
  186.   tar: $(FILES)
  187.       tar cvf - $(FILES) | compress > com_err.tar.Z
  188. + comerr.texinfo: c_e.texinfo.Z
  189. +     uncompress < c_e.texinfo.Z > comerr.texinfo
  190. + c_e.texinfo.Z: c_e.texinfo.Zu
  191. +     uudecode c_e.texinfo.Zu
  192. + texinfo.tex: texinfo.tex.Z
  193. +     uncompress texinfo.tex.Z
  194. + texinfo.tex.Z: texinfo.tex.Zu
  195. +     uudecode texinfo.tex.Zu
  196.   
  197.   # for testing
  198.   test:    test.o test1.o test2.o libcom_err.a
  199. *** /tmp/delete/com_err/PATCHLEVEL    Mon Mar 11 20:22:37 1991
  200. --- PATCHLEVEL    Mon Mar 11 20:26:33 1991
  201. ***************
  202. *** /tmp/delete/com_err/1 ****
  203. ! 3
  204. --- 1 ----
  205. ! 4
  206. *** README    Mon Mar 11 20:37:36 1991
  207. --- README    Mon Mar 11 20:36:53 1991
  208. ***************
  209. *** 35,40 ****
  210. --- 35,59 ----
  211.   After that, you should be all set.
  212.   
  213.   
  214. +              I'M LOOKING FOR BETA-TESTERS
  215. + I try to make this package run on as many different platforms as
  216. + possible.  However, I do not have access to a large variety of
  217. + platforms, so I can't effectively test all of the changes I make.  I'm
  218. + therefore looking for people who are willing to beta-test changes
  219. + before I release them to the general public.  If you are interested in
  220. + doing this, please let me know.
  221. +                  ARCHIVE SITE
  222. + The most recent version of the com_err package and patches to get from
  223. + previous versions to the most recent version are archived on
  224. + pit-manager.mit.edu (18.72.1.58).  You can retrieve them via anonymous
  225. + ftp in the directory /pub/com_err, or via mail-server (send a message
  226. + with the subject "help" to "mail-server@pit-manager.mit.edu").
  227.                     QUESTIONS?
  228.   
  229.     I didn't write com_err, but I'm willing to answer questions and/or
  230. ***************
  231. *** 41,47 ****
  232.   direct them to someone who can.  See my signature to find out how to
  233.   contact me.
  234.   
  235. !   See the file mit-sipb-copyright.h for copyright and distribution
  236.   information.
  237.   
  238.   Jonathan Kamens                          USnail:
  239. --- 60,66 ----
  240.   direct them to someone who can.  See my signature to find out how to
  241.   contact me.
  242.   
  243. !   See the file sipb-copying.h for copyright and distribution
  244.   information.
  245.   
  246.   Jonathan Kamens                          USnail:
  247. *** /tmp/delete/com_err/com_err.3    Mon Mar 11 20:22:40 1991
  248. --- com_err.3    Mon Mar 11 20:26:34 1991
  249. ***************
  250. *** /tmp/delete/com_err/1,7 ****
  251.   .\" Copyright (c) 1988 Massachusetts Institute of Technology,
  252.   .\" Student Information Processing Board.  All rights reserved.
  253.   .\"
  254. ! .\" $Header: /afs/athena.mit.edu/user/j/jik/src/delete/et/RCS/com_err.3,v 1.1 89/11/07 19:05:23 jik Exp $
  255.   .\"
  256.   .TH COM_ERR 3 "22 Nov 1988" SIPB
  257.   .SH NAME
  258. --- 1,7 ----
  259.   .\" Copyright (c) 1988 Massachusetts Institute of Technology,
  260.   .\" Student Information Processing Board.  All rights reserved.
  261.   .\"
  262. ! .\" $Header: /afs/athena.mit.edu/astaff/project/delete/src/et/RCS/com_err.3,v 1.1 89/11/07 19:05:23 jik Exp $
  263.   .\"
  264.   .TH COM_ERR 3 "22 Nov 1988" SIPB
  265.   .SH NAME
  266. *** com_err.c    Mon Mar 11 20:22:41 1991
  267. --- com_err.c    Mon Mar 11 20:26:36 1991
  268. ***************
  269. *** 1,11 ****
  270.   /*
  271.    * Copyright 1987, 1988 by MIT Student Information Processing Board.
  272.    *
  273. !  * For copyright info, see mit-sipb-copyright.h.
  274.    */
  275.   
  276.   #include <stdio.h>
  277. ! #include "mit-sipb-copyright.h"
  278.   
  279.   /*
  280.    * Our environment only provides for ANSI's <stdarg.h> when using GNU
  281. --- 1,11 ----
  282.   /*
  283.    * Copyright 1987, 1988 by MIT Student Information Processing Board.
  284.    *
  285. !  * For copyright info, see sipb-copying.h.
  286.    */
  287.   
  288.   #include <stdio.h>
  289. ! #include "sipb-copying.h"
  290.   
  291.   /*
  292.    * Our environment only provides for ANSI's <stdarg.h> when using GNU
  293. ***************
  294. *** 46,52 ****
  295.   
  296.   #if ! lint
  297.   static const char rcsid[] =
  298. !     "$Header: /afs/athena.mit.edu/user/j/jik/src/delete/et/RCS/com_err.c,v 1.2 89/11/07 18:57:42 jik Exp $";
  299.   #endif    /* ! lint */
  300.   
  301.   static void
  302. --- 46,52 ----
  303.   
  304.   #if ! lint
  305.   static const char rcsid[] =
  306. !     "$Header: /afs/athena.mit.edu/astaff/project/delete/src/et/RCS/com_err.c,v 1.3 91/02/28 18:45:53 jik Exp $";
  307.   #endif    /* ! lint */
  308.   
  309.   static void
  310. *** /tmp/delete/com_err/compile_et.1    Mon Mar 11 20:22:42 1991
  311. --- compile_et.1    Mon Mar 11 20:26:39 1991
  312. ***************
  313. *** /tmp/delete/com_err/1,7 ****
  314.   .\" Copyright (c) 1988 Massachusetts Institute of Technology,
  315.   .\" Student Information Processing Board.  All rights reserved.
  316.   .\"
  317. ! .\" $Header: /afs/athena.mit.edu/user/j/jik/src/delete/et/RCS/compile_et.1,v 1.1 89/11/07 19:05:47 jik Exp $
  318.   .\"
  319.   .TH COMPILE_ET 1 "22 Nov 1988" SIPB
  320.   .SH NAME
  321. --- 1,7 ----
  322.   .\" Copyright (c) 1988 Massachusetts Institute of Technology,
  323.   .\" Student Information Processing Board.  All rights reserved.
  324.   .\"
  325. ! .\" $Header: /afs/athena.mit.edu/astaff/project/delete/src/et/RCS/compile_et.1,v 1.1 89/11/07 19:05:47 jik Exp $
  326.   .\"
  327.   .TH COMPILE_ET 1 "22 Nov 1988" SIPB
  328.   .SH NAME
  329. *** compile_et.c    Mon Mar 11 20:22:44 1991
  330. --- compile_et.c    Mon Mar 11 20:26:40 1991
  331. ***************
  332. *** /tmp/delete/com_err/3,9 ****
  333.    * Copyright 1986, 1987, 1988
  334.    * by MIT Student Information Processing Board.
  335.    *
  336. !  * For copyright info, see "mit-sipb-copyright.h".
  337.    *
  338.    */
  339.   
  340. --- 3,9 ----
  341.    * Copyright 1986, 1987, 1988
  342.    * by MIT Student Information Processing Board.
  343.    *
  344. !  * For copyright info, see "sipb-copying.h".
  345.    *
  346.    */
  347.   
  348. ***************
  349. *** 15,21 ****
  350.   #include <sys/file.h>
  351.   #include <string.h>
  352.   #include <sys/param.h>
  353. ! #include "mit-sipb-copyright.h"
  354.   #include "compiler.h"
  355.   
  356.   #ifndef __STDC__
  357. --- 15,21 ----
  358.   #include <sys/file.h>
  359.   #include <string.h>
  360.   #include <sys/param.h>
  361. ! #include "sipb-copying.h"
  362.   #include "compiler.h"
  363.   
  364.   #ifndef __STDC__
  365. ***************
  366. *** 27,33 ****
  367.       "Copyright 1987,1988 by MIT Student Information Processing Board";
  368.   
  369.   static const char rcsid_compile_et_c[] =
  370. !     "$Header: /afs/athena.mit.edu/user/j/jik/src/delete/et/RCS/compile_et.c,v 1.2 90/06/07 21:48:57 jik Exp $";
  371.   #endif
  372.   
  373.   extern char *gensym();
  374. --- 27,33 ----
  375.       "Copyright 1987,1988 by MIT Student Information Processing Board";
  376.   
  377.   static const char rcsid_compile_et_c[] =
  378. !     "$Header: /afs/athena.mit.edu/astaff/project/delete/src/et/RCS/compile_et.c,v 1.3 91/02/28 18:45:57 jik Exp $";
  379.   #endif
  380.   
  381.   extern char *gensym();
  382. *** error_msg.c    Mon Mar 11 20:22:45 1991
  383. --- error_msg.c    Mon Mar 11 20:26:41 1991
  384. ***************
  385. *** /tmp/delete/com_err/1,21 ****
  386.   /*
  387. !  * $Header: /afs/athena.mit.edu/user/j/jik/src/delete/et/RCS/error_message.c,v 1.1 89/11/07 19:05:30 jik Exp $
  388. !  * $Source: /afs/athena.mit.edu/user/j/jik/src/delete/et/RCS/error_message.c,v $
  389.    * $Locker:  $
  390.    *
  391.    * Copyright 1987 by the Student Information Processing Board
  392.    * of the Massachusetts Institute of Technology
  393.    *
  394. !  * For copyright info, see "mit-sipb-copyright.h".
  395.    */
  396.   
  397.   #include <stdio.h>
  398.   #include "error_table.h"
  399. ! #include "mit-sipb-copyright.h"
  400.   #include "internal.h"
  401.   
  402.   static const char rcsid[] =
  403. !     "$Header: /afs/athena.mit.edu/user/j/jik/src/delete/et/RCS/error_message.c,v 1.1 89/11/07 19:05:30 jik Exp $";
  404.   static const char copyright[] =
  405.       "Copyright 1986, 1987, 1988 by the Student Information Processing Board\nand the department of Information Systems\nof the Massachusetts Institute of Technology";
  406.   
  407. --- 1,21 ----
  408.   /*
  409. !  * $Header: /afs/athena.mit.edu/astaff/project/delete/src/et/RCS/error_msg.c,v 1.2 91/02/28 18:46:00 jik Exp $
  410. !  * $Source: /afs/athena.mit.edu/astaff/project/delete/src/et/RCS/error_msg.c,v $
  411.    * $Locker:  $
  412.    *
  413.    * Copyright 1987 by the Student Information Processing Board
  414.    * of the Massachusetts Institute of Technology
  415.    *
  416. !  * For copyright info, see "sipb-copying.h".
  417.    */
  418.   
  419.   #include <stdio.h>
  420.   #include "error_table.h"
  421. ! #include "sipb-copying.h"
  422.   #include "internal.h"
  423.   
  424.   static const char rcsid[] =
  425. !     "$Header: /afs/athena.mit.edu/astaff/project/delete/src/et/RCS/error_msg.c,v 1.2 91/02/28 18:46:00 jik Exp $";
  426.   static const char copyright[] =
  427.       "Copyright 1986, 1987, 1988 by the Student Information Processing Board\nand the department of Information Systems\nof the Massachusetts Institute of Technology";
  428.   
  429. *** error_table.h    Mon Mar 11 20:22:46 1991
  430. --- error_table.h    Mon Mar 11 20:26:42 1991
  431. ***************
  432. *** /tmp/delete/com_err/2,8 ****
  433.    * Copyright 1988 by the Student Information Processing Board of the
  434.    * Massachusetts Institute of Technology.
  435.    *
  436. !  * For copyright info, see mit-sipb-copyright.h.
  437.    */
  438.   
  439.   #ifndef _ET_H
  440. --- 2,8 ----
  441.    * Copyright 1988 by the Student Information Processing Board of the
  442.    * Massachusetts Institute of Technology.
  443.    *
  444. !  * For copyright info, see sipb-copying.h.
  445.    */
  446.   
  447.   #ifndef _ET_H
  448. *** error_table.y    Mon Mar 11 20:22:47 1991
  449. --- error_table.y    Mon Mar 11 20:26:43 1991
  450. ***************
  451. *** 62,71 ****
  452.    *
  453.    * Copyright 1986, 1987 by the MIT Student Information Processing Board
  454.    *
  455. !  * For copyright info, see mit-sipb-copyright.h.
  456.    */
  457.   
  458.   #include <string.h>
  459.   #include <assert.h>
  460.   #include <ctype.h>
  461.   #include <sys/types.h>
  462. --- 62,77 ----
  463.    *
  464.    * Copyright 1986, 1987 by the MIT Student Information Processing Board
  465.    *
  466. !  * For copyright info, see sipb-copying.h.
  467.    */
  468.   
  469. + #ifdef SYSV
  470.   #include <string.h>
  471. + #define index strchr
  472. + #define rindex strrchr
  473. + #else
  474. + #include <strings.h>
  475. + #endif
  476.   #include <assert.h>
  477.   #include <ctype.h>
  478.   #include <sys/types.h>
  479. ***************
  480. *** 72,82 ****
  481.   #include <sys/time.h>
  482.   #include "internal.h"
  483.   #include "error_table.h"
  484. ! #include "mit-sipb-copyright.h"
  485.   
  486.   #ifndef    lint
  487.   static char const rcsid_error_table_y[] =
  488. !     "$Header: /afs/athena.mit.edu/user/j/jik/src/delete/et/RCS/error_table.y,v 1.2 89/11/07 18:55:08 jik Exp $";
  489.   #endif
  490.   
  491.   extern FILE *hfile, *cfile;
  492. --- 78,88 ----
  493.   #include <sys/time.h>
  494.   #include "internal.h"
  495.   #include "error_table.h"
  496. ! #include "sipb-copying.h"
  497.   
  498.   #ifndef    lint
  499.   static char const rcsid_error_table_y[] =
  500. !     "$Header: /afs/athena.mit.edu/astaff/project/delete/src/et/RCS/error_table.y,v 1.4 91/03/01 09:26:16 jik Exp $";
  501.   #endif
  502.   
  503.   extern FILE *hfile, *cfile;
  504. *** /tmp/delete/com_err/et_lex.lex.l    Mon Mar 11 20:22:48 1991
  505. --- et_lex.lex.l    Mon Mar 11 20:26:43 1991
  506. ***************
  507. *** 31,35 ****
  508.   .        { return (*yytext); }
  509.   %%
  510.   #ifndef lint
  511. ! static char rcsid_et_lex_lex_l[] = "$Header: /afs/athena.mit.edu/user/j/jik/src/delete/et/RCS/et_lex.lex.l,v 1.3 90/06/07 22:53:55 jik Exp $";
  512.   #endif
  513. --- 31,35 ----
  514.   .        { return (*yytext); }
  515.   %%
  516.   #ifndef lint
  517. ! static char rcsid_et_lex_lex_l[] = "$Header: /afs/athena.mit.edu/astaff/project/delete/src/et/RCS/et_lex.lex.l,v 1.3 90/06/07 22:53:55 jik Exp $";
  518.   #endif
  519. *** /tmp/delete/com_err/et_name.c    Mon Mar 11 20:22:49 1991
  520. --- et_name.c    Mon Mar 11 20:26:44 1991
  521. ***************
  522. *** 1,11 ****
  523.   /*
  524.    * Copyright 1987 by MIT Student Information Processing Board
  525.    *
  526. !  * For copyright info, see mit-sipb-copyright.h.
  527.    */
  528.   
  529.   #include "error_table.h"
  530. ! #include "mit-sipb-copyright.h"
  531.   #include "internal.h"
  532.   
  533.   #ifndef    lint
  534. --- 1,11 ----
  535.   /*
  536.    * Copyright 1987 by MIT Student Information Processing Board
  537.    *
  538. !  * For copyright info, see sipb-copying.h.
  539.    */
  540.   
  541.   #include "error_table.h"
  542. ! #include "sipb-copying.h"
  543.   #include "internal.h"
  544.   
  545.   #ifndef    lint
  546. ***************
  547. *** /tmp/delete/com_err/12,18 ****
  548.   static const char copyright[] =
  549.       "Copyright 1987,1988 by Student Information Processing Board, Massachusetts Institute of Technology";
  550.   static const char rcsid_et_name_c[] =
  551. !     "$Header: /afs/athena.mit.edu/user/j/jik/src/delete/et/RCS/et_name.c,v 1.1 89/11/07 19:05:32 jik Exp $";
  552.   #endif
  553.   
  554.   static const char char_set[] =
  555. --- 12,18 ----
  556.   static const char copyright[] =
  557.       "Copyright 1987,1988 by Student Information Processing Board, Massachusetts Institute of Technology";
  558.   static const char rcsid_et_name_c[] =
  559. !     "$Header: /afs/athena.mit.edu/astaff/project/delete/src/et/RCS/et_name.c,v 1.2 91/02/28 18:46:10 jik Exp $";
  560.   #endif
  561.   
  562.   static const char char_set[] =
  563. *** init_et.c    Mon Mar 11 20:22:49 1991
  564. --- init_et.c    Mon Mar 11 20:26:45 1991
  565. ***************
  566. *** 1,17 ****
  567.   /*
  568. !  * $Header: /afs/athena.mit.edu/user/j/jik/src/delete/et/RCS/init_et.c,v 1.1 89/11/07 19:05:34 jik Exp $
  569. !  * $Source: /afs/athena.mit.edu/user/j/jik/src/delete/et/RCS/init_et.c,v $
  570.    * $Locker:  $
  571.    *
  572.    * Copyright 1986, 1987, 1988 by MIT Information Systems and
  573.    *    the MIT Student Information Processing Board.
  574.    *
  575. !  * For copyright info, see mit-sipb-copyright.h.
  576.    */
  577.   
  578.   #include <stdio.h>
  579.   #include "error_table.h"
  580. ! #include "mit-sipb-copyright.h"
  581.   
  582.   #ifndef __STDC__
  583.   #define const
  584. --- 1,17 ----
  585.   /*
  586. !  * $Header: /afs/athena.mit.edu/astaff/project/delete/src/et/RCS/init_et.c,v 1.2 91/02/28 18:46:13 jik Exp $
  587. !  * $Source: /afs/athena.mit.edu/astaff/project/delete/src/et/RCS/init_et.c,v $
  588.    * $Locker:  $
  589.    *
  590.    * Copyright 1986, 1987, 1988 by MIT Information Systems and
  591.    *    the MIT Student Information Processing Board.
  592.    *
  593. !  * For copyright info, see sipb-copying.h.
  594.    */
  595.   
  596.   #include <stdio.h>
  597.   #include "error_table.h"
  598. ! #include "sipb-copying.h"
  599.   
  600.   #ifndef __STDC__
  601.   #define const
  602. ***************
  603. *** 19,25 ****
  604.   
  605.   #ifndef    lint
  606.   static const char rcsid_init_et_c[] =
  607. !     "$Header: /afs/athena.mit.edu/user/j/jik/src/delete/et/RCS/init_et.c,v 1.1 89/11/07 19:05:34 jik Exp $";
  608.   #endif
  609.   
  610.   extern char *malloc(), *realloc();
  611. --- 19,25 ----
  612.   
  613.   #ifndef    lint
  614.   static const char rcsid_init_et_c[] =
  615. !     "$Header: /afs/athena.mit.edu/astaff/project/delete/src/et/RCS/init_et.c,v 1.2 91/02/28 18:46:13 jik Exp $";
  616.   #endif
  617.   
  618.   extern char *malloc(), *realloc();
  619. *** /tmp/delete/com_err/internal.h    Mon Mar 11 20:22:50 1991
  620. --- internal.h    Mon Mar 11 20:26:45 1991
  621. ***************
  622. *** 1,7 ****
  623.   /*
  624.    * internal include file for com_err package
  625.    */
  626. ! #include "mit-sipb-copyright.h"
  627.   #ifndef __STDC__
  628.   #undef const
  629.   #define const
  630. --- 1,7 ----
  631.   /*
  632.    * internal include file for com_err package
  633.    */
  634. ! #include "sipb-copying.h"
  635.   #ifndef __STDC__
  636.   #undef const
  637.   #define const
  638.  
  639. exit 0 # Just in case...
  640. -- 
  641. Kent Landfield                   INTERNET: kent@sparky.IMD.Sterling.COM
  642. Sterling Software, IMD           UUCP:     uunet!sparky!kent
  643. Phone:    (402) 291-8300         FAX:      (402) 291-4362
  644. Please send comp.sources.misc-related mail to kent@uunet.uu.net.
  645.