comparison src/m/delta.h @ 7958:1398a59935e7

* m/delta.h (memmove): switch the first two args.
author Francesco Potortì <pot@gnu.org>
date Sat, 18 Jun 1994 17:54:50 +0000
parents 2e1388fa0119
children 191acacfa1ec
comparison
equal deleted inserted replaced
7957:a1404ed5d012 7958:1398a59935e7
147 #define BROKEN_CLOSEDIR /* builtin closedir is interruptible */ 147 #define BROKEN_CLOSEDIR /* builtin closedir is interruptible */
148 #undef HAVE_BCOPY /* b* functions are just stubs to mem* ones */ 148 #undef HAVE_BCOPY /* b* functions are just stubs to mem* ones */
149 #define bcopy(from,to,bytes) memcpy(to,from,bytes) 149 #define bcopy(from,to,bytes) memcpy(to,from,bytes)
150 #define bzero(to,bytes) memset(to,0,bytes) 150 #define bzero(to,bytes) memset(to,0,bytes)
151 #define bcmp memcmp 151 #define bcmp memcmp
152 #define memmove safe_bcopy /* for overlapping copies */ 152 #define memmove(t,f,s) safe_bcopy(f,t,s) /* for overlapping copies */
153 #undef KERNEL_FILE 153 #undef KERNEL_FILE
154 #define KERNEL_FILE "/sysv68" 154 #define KERNEL_FILE "/sysv68"
155 #undef LDAV_SYMBOL 155 #undef LDAV_SYMBOL
156 #ifdef SIGIO 156 #ifdef SIGIO
157 /* R3V7 has SIGIO, but interrupt input does not work yet. 157 /* R3V7 has SIGIO, but interrupt input does not work yet.