bcopy needs definition in Xfuncs.h for Xming

This commit is contained in:
Colin Harrison 2007-05-09 16:46:25 +01:00 committed by Alan Hourihane
parent 7505880329
commit d8a49874bb

View file

@ -89,6 +89,10 @@ void bcopy();
#define atexit(f) on_exit(f, 0)
#endif
#if defined WIN32 && defined __MINGW32__
#define bcopy(b1,b2,len) memmove(b2, b1, (size_t)(len))
#endif
#endif /* !(defined(XFree86LOADER) && defined(IN_MODULE)) */
#endif /* _XFUNCS_H_ */