home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / gnu / utils / bug / 2303 < prev    next >
Encoding:
Text File  |  1993-01-01  |  930 b   |  34 lines

  1. Newsgroups: gnu.utils.bug
  2. Path: sparky!uunet!cis.ohio-state.edu!claude.cs.umb.edu!karl
  3. From: karl@claude.cs.umb.edu (Karl Berry)
  4. Subject: wdiff 0.04 & signal.h
  5. Message-ID: <199301010103.AA07900@claude.cs.umb.edu>
  6. Sender: gnulists@ai.mit.edu
  7. Reply-To: karl@cs.umb.edu
  8. Organization: GNUs Not Usenet
  9. Distribution: gnu
  10. Date: Thu, 31 Dec 1992 15:03:17 GMT
  11. Approved: bug-gnu-utils@prep.ai.mit.edu
  12. Lines: 20
  13.  
  14. wdiff 0.04 doesn't compile on a 486 running ISC 2.2.1 with gcc 2.3.2,
  15. because <signal.h> requires <sys/types.h>.  Here is the (trivial) fix.
  16.  
  17. Tue Dec 29 07:17:59 1992  Karl Berry  (karl@cs.umb.edu)
  18.  
  19.     * wdiff.c: Include <sys/types.h> before <signal.h>.
  20.  
  21. *** ./ORIG/wdiff.c    Wed Dec 23 21:10:28 1992
  22. --- ./wdiff.c    Tue Dec 29 07:18:19 1992
  23. ***************
  24. *** 65,70 ****
  25. --- 65,71 ----
  26.   #endif /* HAVE_TPUTS */
  27.   
  28.   #include <setjmp.h>
  29. + #include <sys/types.h>
  30.   #include <signal.h>
  31.   #ifndef RETSIGTYPE
  32.   #define RETSIGTYPE void
  33.  
  34.