home *** CD-ROM | disk | FTP | other *** search
- --- sh.func.c.orig Fri Nov 20 04:04:20 1992
- +++ sh.func.c Mon Feb 3 12:57:10 1997
- @@ -1474,7 +1474,11 @@
- # if defined(BSD4_4) && !defined(__386BSD__)
- typedef quad_t RLIM_TYPE;
- # else
- +# if defined(ALPHAOSF)
- + typedef long RLIM_TYPE;
- +# else
- typedef int RLIM_TYPE;
- +# endif
- # endif /* BSD4_4 && !__386BSD__ */
- # endif /* BSDLIMIT */
-
- --- sh.set.c.orig Fri Nov 20 04:04:23 1992
- +++ sh.set.c Mon Feb 3 13:04:46 1997
- @@ -418,7 +418,7 @@
- }
- else {
- num = 4; /* confuse lint */
- - if (sizeof(int) == num && ((unsigned int) n) == 2147483648) {
- + if (sizeof(int) == num && ((unsigned int) n) == (unsigned int)2147483648) {
- *putp++ = '2';
- n = 147483648;
- }
- --- tc.os.h.orig Fri Nov 20 04:04:33 1992
- +++ tc.os.h Mon Feb 3 12:50:04 1997
- @@ -606,9 +606,11 @@
- extern int readlink __P((const char *, char *, size_t));
- # endif /* SUNOS4 && __GNUC__ == 2 */
-
- +#if !defined(ALPHAOSF)
- #if (defined(BSD) && !defined(__386BSD__)) || defined(SUNOS4)
- extern void bcopy __P((const void *, void *, size_t));
- # define memmove(a, b, c) (bcopy((char *) (b), (char *) (a), (int) (c)), a)
- +#endif
- #endif
-
- #if !defined(hpux) && !defined(COHERENT) && ((SYSVREL < 4) || defined(_SEQUENT_)) && !defined(__386BSD__) && !defined(memmove)
-