]> pd.if.org Git - pdclib/blobdiff - functions/stdio/vsnprintf.c
Unnecessary typedef removed.
[pdclib] / functions / stdio / vsnprintf.c
index 30086ab1d38a62dd2d72af1cc23cbe2d8037be06..08f235530a68a8b843e53c06422bef19146b746a 100644 (file)
@@ -1,7 +1,5 @@
 /* $Id$ */
 
-/* Release $Name$ */
-
 /* vsnprintf( char *, size_t, const char *, va_list ap )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -13,8 +11,6 @@
 
 #ifndef REGTEST
 
-typedef char wchar_t;
-
 int vsnprintf( char * str, size_t size, const char * format, _PDCLIB_va_list arg )
 {
     /* TODO: This function should interpret format as multibyte characters. */