scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

sprintf.c (215B)


      1 #include <stdarg.h>
      2 #include <stdio.h>
      3 
      4 #undef sprintf
      5 
      6 int
      7 sprintf(char *restrict s, const char *restrict fmt, ...)
      8 {
      9 	int r;
     10 
     11 	va_list va;
     12 	va_start(va, fmt);
     13 	r = vsprintf(s, fmt, va);
     14 	va_end(va);
     15 
     16 	return r;
     17 }