9 lines
		
	
	
		
			119 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			9 lines
		
	
	
		
			119 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| 
								 | 
							
								#include <unistd.h>
							 | 
						||
| 
								 | 
							
								#include "sleep.h"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/* usleep(3) */
							 | 
						||
| 
								 | 
							
								void usleep_(unsigned long *microsec)
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								  usleep(*microsec);
							 | 
						||
| 
								 | 
							
								}
							 |