mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
16 lines
213 B
C
16 lines
213 B
C
#ifndef _REENT_ONLY
|
|
|
|
#include <_ansi.h>
|
|
#include <reent.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
char *
|
|
strndup (const char *str,
|
|
size_t n)
|
|
{
|
|
return _strndup_r (_REENT, str, n);
|
|
}
|
|
|
|
#endif /* !_REENT_ONLY */
|