Changeset 23614 in vbox
- Timestamp:
- Oct 8, 2009 10:27:33 AM (15 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/GuestHost/OpenGL/util/mem.c (modified) (1 diff)
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.

