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 30... Line 30...
30
 
30
 
Line 31... Line 31...
31
#ifndef _REENT_ONLY
31
#ifndef _REENT_ONLY
32
 
32
 
33
int
33
int
34
_DEFUN(vsprintf, (str, fmt, ap),
34
_DEFUN(vsprintf, (str, fmt, ap),
35
       char *str        _AND
35
       char *__restrict str        _AND
36
       const char *fmt _AND
36
       const char *__restrict fmt _AND
37
       va_list ap)
37
       va_list ap)
38
{
38
{
Line 39... Line 39...
39
  return _vsprintf_r (_REENT, str, fmt, ap);
39
  return _vsprintf_r (_REENT, str, fmt, ap);
Line 40... Line 40...
40
}
40
}
41
 
41
 
42
#endif /* !_REENT_ONLY */
42
#endif /* !_REENT_ONLY */
43
 
43
 
44
int
44
int
45
_DEFUN(_vsprintf_r, (ptr, str, fmt, ap),
45
_DEFUN(_vsprintf_r, (ptr, str, fmt, ap),
46
       struct _reent *ptr _AND
46
       struct _reent *ptr _AND
47
       char *str          _AND
47
       char *__restrict str          _AND
48
       const char *fmt   _AND
48
       const char *__restrict fmt   _AND