mirror of
				https://github.com/KolibriOS/kolibrios.git
				synced 2025-11-03 21:06:50 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			254 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			254 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _REENT_ONLY
 | 
						|
 | 
						|
#include <_ansi.h>
 | 
						|
#include <reent.h>
 | 
						|
#include <stdlib.h>
 | 
						|
#include <string.h>
 | 
						|
 | 
						|
char *
 | 
						|
_DEFUN (strndup, (str, n), 
 | 
						|
	_CONST char *str _AND
 | 
						|
	size_t n)
 | 
						|
{
 | 
						|
  return _strndup_r (_REENT, str, n);
 | 
						|
}
 | 
						|
 | 
						|
#endif /* !_REENT_ONLY */
 |