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 <_ansi.h>
  4. #include <reent.h>
  5. #include <stdlib.h>
  6. #include <string.h>
  7.  
  8. char *
  9. _DEFUN (strndup, (str, n),
  10.         _CONST char *str _AND
  11.         size_t n)
  12. {
  13.   return _strndup_r (_REENT, str, n);
  14. }
  15.  
  16. #endif /* !_REENT_ONLY */
  17.