Subversion Repositories Kolibri OS

Rev

Rev 4973 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4973 Rev 5098
1
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
1
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2
#include 
2
#include 
3
 
3
 
4
#undef bcopy
4
#undef bcopy
5
 
5
 
6
void *
6
void
7
bcopy(const void *a, void *b, size_t len)
7
bcopy(const void *a, void *b, size_t len)
8
{
8
{
9
  return memmove(b, a, len);
9
  memmove(b, a, len);
10
}
10
}