Mercurial > emacs
changeset 11258:eff46f465625
(bcopy): If NEED_BCOPY, do compile this.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 07 Apr 1995 18:26:02 +0000 |
parents | c7eafa2fbe91 |
children | 81f5d9eb1484 |
files | src/sysdep.c |
diffstat | 1 files changed, 83 insertions(+), 78 deletions(-) [+] |
line wrap: on
line diff
--- a/src/sysdep.c Fri Apr 07 18:21:26 1995 +0000 +++ b/src/sysdep.c Fri Apr 07 18:26:02 1995 +0000 @@ -1388,8 +1388,10 @@ #endif #if defined (HAVE_TERMIOS) || defined (HPUX9) +#ifdef TCOON if (!flow_control) tcflow (input_fd, TCOON); #endif +#endif #ifdef AIXHFT hft_init (); @@ -2640,84 +2642,6 @@ #endif /* POSIX_SIGNALS */ -#ifndef BSTRING - -#ifndef bzero - -void -bzero (b, length) - register char *b; - register int length; -{ -#ifdef VMS - short zero = 0; - long max_str = 65535; - - while (length > max_str) { - (void) LIB$MOVC5 (&zero, &zero, &zero, &max_str, b); - length -= max_str; - b += max_str; - } - max_str = length; - (void) LIB$MOVC5 (&zero, &zero, &zero, &max_str, b); -#else - while (length-- > 0) - *b++ = 0; -#endif /* not VMS */ -} - -#endif /* no bzero */ - -#ifndef bcopy -/* Saying `void' requires a declaration, above, where bcopy is used - and that declaration causes pain for systems where bcopy is a macro. */ -bcopy (b1, b2, length) - register char *b1; - register char *b2; - register int length; -{ -#ifdef VMS - long max_str = 65535; - - while (length > max_str) { - (void) LIB$MOVC3 (&max_str, b1, b2); - length -= max_str; - b1 += max_str; - b2 += max_str; - } - max_str = length; - (void) LIB$MOVC3 (&length, b1, b2); -#else - while (length-- > 0) - *b2++ = *b1++; -#endif /* not VMS */ -} -#endif /* no bcopy */ - -#ifndef bcmp -int -bcmp (b1, b2, length) /* This could be a macro! */ - register char *b1; - register char *b2; - register int length; -{ -#ifdef VMS - struct dsc$descriptor_s src1 = {length, DSC$K_DTYPE_T, DSC$K_CLASS_S, b1}; - struct dsc$descriptor_s src2 = {length, DSC$K_DTYPE_T, DSC$K_CLASS_S, b2}; - - return STR$COMPARE (&src1, &src2); -#else - while (length-- > 0) - if (*b1++ != *b2++) - return 1; - - return 0; -#endif /* not VMS */ -} -#endif /* no bcmp */ - -#endif /* not BSTRING */ - #ifndef HAVE_RANDOM #ifdef random #define HAVE_RANDOM @@ -5038,3 +4962,84 @@ } #endif /* USE_DL_STUBS */ + +#ifndef BSTRING + +#ifndef bzero + +void +bzero (b, length) + register char *b; + register int length; +{ +#ifdef VMS + short zero = 0; + long max_str = 65535; + + while (length > max_str) { + (void) LIB$MOVC5 (&zero, &zero, &zero, &max_str, b); + length -= max_str; + b += max_str; + } + max_str = length; + (void) LIB$MOVC5 (&zero, &zero, &zero, &max_str, b); +#else + while (length-- > 0) + *b++ = 0; +#endif /* not VMS */ +} + +#endif /* no bzero */ +#endif /* BSTRING */ + +#if (defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY) +#undef bcopy + +/* Saying `void' requires a declaration, above, where bcopy is used + and that declaration causes pain for systems where bcopy is a macro. */ +bcopy (b1, b2, length) + register char *b1; + register char *b2; + register int length; +{ +#ifdef VMS + long max_str = 65535; + + while (length > max_str) { + (void) LIB$MOVC3 (&max_str, b1, b2); + length -= max_str; + b1 += max_str; + b2 += max_str; + } + max_str = length; + (void) LIB$MOVC3 (&length, b1, b2); +#else + while (length-- > 0) + *b2++ = *b1++; +#endif /* not VMS */ +} +#endif /* (defined (BSTRING) && !defined (bcopy)) || defined (NEED_BCOPY) */ + +#ifdef BSTRING +#ifndef bcmp +int +bcmp (b1, b2, length) /* This could be a macro! */ + register char *b1; + register char *b2; + register int length; +{ +#ifdef VMS + struct dsc$descriptor_s src1 = {length, DSC$K_DTYPE_T, DSC$K_CLASS_S, b1}; + struct dsc$descriptor_s src2 = {length, DSC$K_DTYPE_T, DSC$K_CLASS_S, b2}; + + return STR$COMPARE (&src1, &src2); +#else + while (length-- > 0) + if (*b1++ != *b2++) + return 1; + + return 0; +#endif /* not VMS */ +} +#endif /* no bcmp */ +#endif /* not BSTRING */