OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [newlib/] [libc/] [machine/] [spu/] [vsprintf.c] - Rev 194

Go to most recent revision | Compare with Previous | Blame | View Log

 
#include <_ansi.h>
#include <stdio.h>
 
#include "c99ppe.h"
 
#ifdef _HAVE_STDC
#include <stdarg.h>
#else
#include <varargs.h>
#endif
 
#ifdef INTEGER_ONLY
#  define vsprintf vsiprintf
#endif
 
typedef struct
{
  char *str;
  unsigned int pad0[ 3 ];
  char *fmt;
  unsigned int pad1[ 3 ];
  va_list ap;
} c99_vsprintf_t;
 
#ifndef _REENT_ONLY
 
int
_DEFUN (vsprintf, (str, fmt, ap),
     char *str _AND
     _CONST char *fmt _AND
     va_list ap)
{
  c99_vsprintf_t args;
 
  CHECK_STR_INIT(_REENT);
 
  args.str = str;
  args.fmt = (char*) fmt;
  va_copy(args.ap,ap);
 
  return __send_to_ppe(SPE_C99_SIGNALCODE, SPE_C99_VSPRINTF, &args);
}
 
#endif /* ! _REENT_ONLY */
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.