home *** CD-ROM | disk | FTP | other *** search
- *** /tmp/,RCSt1a12869 Thu Aug 24 00:31:02 1989
- --- PatchLevel.h Sun Aug 20 02:41:53 1989
- ***************
- *** 1,5 ****
- /*
- ! * PathLevel: 3
- *
- * the Patch Level above is to identify the version
- * of the all the files in this directory. given the above
- --- 1,5 ----
- /*
- ! * PathLevel: 4
- *
- * the Patch Level above is to identify the version
- * of the all the files in this directory. given the above
- *** /tmp/,RCSt1a12869 Thu Aug 24 00:31:25 1989
- --- std.h Sat Aug 19 19:34:34 1989
- ***************
- *** 325,331 ****
- void * lmemchr(CONST void *, int, long);
- void * lmemccpy(void *, CONST void *, int, long);
- void * lmalloc(unsigned long);
- ! void * lremalloc(void *, unsigned long);
- void * lcalloc(unsigned long, unsigned long);
-
- #endif /* __MSHORT__ */
- --- 325,331 ----
- void * lmemchr(CONST void *, int, long);
- void * lmemccpy(void *, CONST void *, int, long);
- void * lmalloc(unsigned long);
- ! void * lrealloc(void *, unsigned long);
- void * lcalloc(unsigned long, unsigned long);
-
- #endif /* __MSHORT__ */
- ***************
- *** 356,362 ****
- #define lmemchr memchr
- #define lmemccpy memccpy
- #define lmalloc malloc
- ! #define lremalloc realloc
- #define lcalloc calloc
- #endif
-
- --- 356,362 ----
- #define lmemchr memchr
- #define lmemccpy memccpy
- #define lmalloc malloc
- ! #define lrealloc realloc
- #define lcalloc calloc
- #endif
-
- *** /tmp/,RCSt1a12869 Thu Aug 24 00:31:26 1989
- --- stdarg.h Sat Aug 19 04:25:03 1989
- ***************
- *** 33,39 ****
-
- #define va_arg(AP, TYPE) \
- (AP += __va_rounded_size (TYPE), \
- ! *((TYPE *) (AP - __va_rounded_size (TYPE))))
-
- #endif /* __GNUC__ */
-
- --- 33,39 ----
-
- #define va_arg(AP, TYPE) \
- (AP += __va_rounded_size (TYPE), \
- ! ((TYPE *) AP)[-1])
-
- #endif /* __GNUC__ */
-
- *** /tmp/,RCSt1a12869 Thu Aug 24 00:31:34 1989
- --- varargs.h Sat Aug 19 04:25:17 1989
- ***************
- *** 28,34 ****
-
- #define va_arg(AP, TYPE) \
- (AP += __va_rounded_size (TYPE), \
- ! *((TYPE *) (AP - __va_rounded_size (TYPE))))
-
- #endif /* __GNUC__ */
-
- --- 28,34 ----
-
- #define va_arg(AP, TYPE) \
- (AP += __va_rounded_size (TYPE), \
- ! ((TYPE *) AP)[-1])
-
- #endif /* __GNUC__ */
-
-