]> git.eshelyaron.com Git - emacs.git/commitdiff
(bcopy, bzero, bcmp): Defined.
authorRichard M. Stallman <rms@gnu.org>
Tue, 4 Jan 1994 08:42:21 +0000 (08:42 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 4 Jan 1994 08:42:21 +0000 (08:42 +0000)
src/s/sco4.h

index 16866059d18477dd40a4e776ca003618d161a9e1..ec5b5c3922bed82fda85ae4eb2f9ec535a5a3d4c 100644 (file)
@@ -123,3 +123,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #else
 #define MAIL_PROGRAM_NAME "/usr/lib/mail/execmail"
 #endif
+
+/* miano@acosta.enet.dec.com says these are needed.  */
+#define bcopy(b1,b2,len) memmove (b2, b1, len)
+#define bzero(b,len) memset (b, 0, len)
+#define bcmp(b1,b2,len) memcmp (b1, b2, len)