Subversion Repositories Kolibri OS

Rev

Rev 4874 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4874 Rev 4921
Line 55... Line 55...
55
#include <_ansi.h>
55
#include <_ansi.h>
56
#include 
56
#include 
57
#include 
57
#include 
58
#include 
58
#include 
Line 59... Line -...
59
 
-
 
60
int
-
 
61
_DEFUN (_rename_r, (ptr, old, new),
-
 
62
     struct _reent *ptr _AND
-
 
63
     _CONST char *old _AND
-
 
64
     _CONST char *new)
-
 
65
{
-
 
66
    return -1;
-
 
67
}
-
 
68
 
-
 
69
 
59
 
Line 70... Line 60...
70
#ifndef _REENT_ONLY
60
#ifndef _REENT_ONLY
71
 
61
 
72
int
62
int
73
_DEFUN(rename, (old, new),
63
_DEFUN(rename, (old, new),
74
       _CONST char *old _AND
64
       _CONST char *old _AND
75
       _CONST char *new)
65
       _CONST char *new)
76
{
66
{
Line 77... Line 67...
77
    return -1;
67
  return _rename_r (_REENT, old, new);