URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [newlib-1.17.0/] [newlib/] [libc/] [string/] [strndup.c] - Rev 831
Go to most recent revision | Compare with Previous | Blame | View Log
#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 */
Go to most recent revision | Compare with Previous | Blame | View Log