source: trunk/mgpp/lib/sysfuncs.cpp@ 3365

Last change on this file since 3365 was 3365, checked in by kjdon, 22 years ago

Initial revision

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 87 bytes
Line 
1#include <stdlib.h>
2
3void *bcopy(void *s, void *d, int n)
4{ return memcpy(d, s, n);
5}
6
Note: See TracBrowser for help on using the repository browser.