mirror of
https://gitlab.freedesktop.org/xorg/proto/xorgproto.git
synced 2026-05-08 06:38:00 +02:00
bcopy needs definition in Xfuncs.h for Xming
This commit is contained in:
parent
7505880329
commit
d8a49874bb
1 changed files with 4 additions and 0 deletions
4
Xfuncs.h
4
Xfuncs.h
|
|
@ -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_ */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue