Changeset 23614 in vbox for trunk/src/VBox/GuestHost/OpenGL/util
- Timestamp:
- Oct 8, 2009 10:27:33 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 53289
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/util/mem.c
r15532 r23614 115 115 DECLEXPORT(void) crMemcpy( void *dst, const void *src, unsigned int bytes ) 116 116 { 117 CRASSERT(dst );118 CRASSERT(src );117 CRASSERT(dst || 0==bytes); 118 CRASSERT(src || 0==bytes); 119 119 (void) memcpy( dst, src, bytes ); 120 120 }
Note:
See TracChangeset
for help on using the changeset viewer.