Date: Mon, 24 Aug 92 13:47:59 +0100 From: buers AT dg1 DOT chemie DOT uni-konstanz DOT de (Dieter Buerssner) To: djgpp AT sun DOT soe DOT clarkson DOT edu Cc: dj AT ctron DOT com Subject: missing prototype for memmove() in std.h In std.h is the prototype for memmove missing. I think you really don't need a diff, but here is it anyway. Dieter *** std.org Fri Aug 7 00:11:04 1992 --- std.h Mon Aug 24 05:42:06 1992 *************** *** 142,147 **** --- 142,148 ---- int memcmp(const void*, const void*, size_t); void* memcpy(void*, const void*, size_t); void* _memcpy(void*, const void*, int); /* doesn't use movsb */ + void* memmove(void*, void*, size_t); void* memset(void*, int, int); int mkdir(const char*, int); int mknod(const char*, int, int);