mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
14 lines
345 B
C
14 lines
345 B
C
/*
|
|
* COPYRIGHT: GNU GPL, see COPYING in the top level directory
|
|
* PROJECT: ReactOS crt library
|
|
* FILE: lib/sdk/crt/printf/_vsnprintf.c
|
|
* PURPOSE: Implementation of _vsnprintf
|
|
* PROGRAMMER: Timo Kreuzer
|
|
*/
|
|
|
|
#define _sxprintf _vsnprintf
|
|
#define USE_COUNT 1
|
|
#define USE_VARARGS 1
|
|
|
|
#include "_sxprintf.c"
|