diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/s/usg5-4.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/s/usg5-4.h b/src/s/usg5-4.h index f319ecd2d22..34a19bd37b0 100644 --- a/src/s/usg5-4.h +++ b/src/s/usg5-4.h | |||
| @@ -196,6 +196,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 196 | So give it a try. */ | 196 | So give it a try. */ |
| 197 | #define HAVE_SOCKETS | 197 | #define HAVE_SOCKETS |
| 198 | 198 | ||
| 199 | #define bcopy(src,dst,n) memcpy(dst,src,n) | 199 | #define bcopy(src,dst,n) memmove(dst,src,n) |
| 200 | #define bcmp(src,dst,n) memcmp(src,dst,n) | 200 | #define bcmp(src,dst,n) memcmp(src,dst,n) |
| 201 | #define bzero(s,n) memset(s,0,n) | 201 | #define bzero(s,n) memset(s,0,n) |