OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-newlib/] [newlib-1.17.0/] [newlib/] [libc/] [machine/] [spu/] [vprintf.c] - Rev 9

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 vprintf viprintf
#endif
 
typedef struct
{
  _CONST char* fmt;
  unsigned int pad0[ 3 ];
  va_list ap;
} c99_vprintf_t;
 
#ifndef _REENT_ONLY
 
int
_DEFUN (vprintf, (fmt, ap),
     _CONST char *fmt _AND
     va_list ap)
{
  c99_vprintf_t args;
 
  CHECK_STD_INIT(_REENT);
 
  args.fmt = fmt;
  va_copy(args.ap,ap);
 
  return __send_to_ppe(SPE_C99_SIGNALCODE, SPE_C99_VPRINTF, &args);
}
 
#endif /* ! _REENT_ONLY */
 

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.