mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +00:00
14 lines
194 B
C
14 lines
194 B
C
#ifndef _REENT_ONLY
|
|
|
|
#include <reent.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
char *
|
|
_DEFUN (strdup, (str), _CONST char *str)
|
|
{
|
|
return _strdup_r (_REENT, str);
|
|
}
|
|
|
|
#endif /* !_REENT_ONLY */
|