home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / gnu / gcc / bug / 2790 < prev    next >
Encoding:
Text File  |  1992-11-19  |  1.2 KB  |  43 lines

  1. Newsgroups: gnu.gcc.bug
  2. Path: sparky!uunet!zaphod.mps.ohio-state.edu!cis.ohio-state.edu!kcin.alphacdc.COM!randy
  3. From: randy@kcin.alphacdc.COM (Randy S. Welch)
  4. Subject: Patch to config/plexus.h
  5. Message-ID: <m0mrk6g-0000wtC@kcin>
  6. Sender: gnulists@ai.mit.edu
  7. Organization: GNUs Not Usenet
  8. Distribution: gnu
  9. Date: Wed, 18 Nov 1992 06:45:00 GMT
  10. Approved: bug-gcc@prep.ai.mit.edu
  11. Lines: 30
  12.  
  13. A couple of fixes for plexus.h for gcc 2.3.1.
  14.  
  15. Fixes SIZE_TYPE  definition as needed by gcc-2.3.1
  16. Defines size_t, since the plexus doesn't have size_t defined by default
  17. Defines rindex/index to str* functions for sysV environments
  18.  
  19. -randy
  20.  
  21. *** config/plexus.h.org    Mon Nov  2 22:41:20 1992
  22. --- config/plexus.h    Tue Nov 10 20:58:54 1992
  23. ***************
  24. *** 87,90 ****
  25.   #define NO_SYS_SIGLIST
  26.   #define NO_DUP2
  27.   
  28. ! #define SIZE_TYPE int
  29. --- 87,97 ----
  30.   #define NO_SYS_SIGLIST
  31.   #define NO_DUP2
  32.   
  33. ! #define SIZE_TYPE "int"
  34. ! /************************************************************************/
  35. ! /*               define items the plexus doesn't have...                */
  36. ! /************************************************************************/
  37. ! #define size_t int
  38. ! #define rindex strrchr
  39. ! #define index strchr
  40.  
  41.  
  42.