plan 9 kernel history: overview | file list | diff list

1991/0318/port/dev.c (diff list | history)

1990/11211/sys/src/9/port/dev.c:38,451991/0318/sys/src/9/port/dev.c:38,45 (short | long | prev | next)
Eliminate memcpy.
rsc Fri Mar 4 12:44:25 2005
1990/0227    
	db->mtime = db->atime; 
	db->hlength = 0; 
	db->length = length; 
1990/11211    
	memcpy(db->uid, user, NAMELEN); 
	memcpy(db->gid, user, NAMELEN); 
1991/0318    
	memmove(db->uid, user, NAMELEN); 
	memmove(db->gid, user, NAMELEN); 
1990/0227    
} 
 
int 


source code copyright © 1990-2005 Lucent Technologies; see license
Plan 9 distribution
comments to russ cox (rsc@swtch.com)