Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef _REENT_ONLY
  2.  
  3. #include <reent.h>
  4. #include <stdlib.h>
  5. #include <string.h>
  6.  
  7. char *
  8. _DEFUN (strdup, (str), _CONST char *str)
  9. {
  10.   return _strdup_r (_REENT, str);
  11. }
  12.  
  13. #endif /* !_REENT_ONLY */
  14.