include: Fix a mistake in the declaration of _sntprintf.

This commit is contained in:
Mikołaj Zalewski 2006-04-13 10:21:51 +02:00 committed by Alexandre Julliard
parent 3a0829105b
commit 61512b2021
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ extern "C" {
#define _puttc WINE_tchar_routine(putc, putc, putwc)
#define _puttchar WINE_tchar_routine(putchar, putchar, putwchar)
#define _putts WINE_tchar_routine(puts, puts, putws)
#define _sntprintf WINE_tchar_routine(sprintf, sprintf, swprintf)
#define _sntprintf WINE_tchar_routine(snprintf, snprintf, snwprintf)
#define _stprintf WINE_tchar_routine(sprintf, sprintf, swprintf)
#define _stscanf WINE_tchar_routine(sscanf, sscanf, swscanf)
#define _taccess WINE_tchar_routine(access, _access, _waccess)