*** empty log message ***
This commit is contained in:
parent
f01bfbbf9a
commit
8301120ed3
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: jni.c,v 1.55 2007-01-26 15:27:00 bacon Exp $
|
* $Id: jni.c,v 1.56 2007-01-26 16:15:54 bacon Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
@ -146,13 +146,8 @@ static int awk_sprintf (
|
|||||||
static void awk_aprintf (const ase_char_t* fmt, ...)
|
static void awk_aprintf (const ase_char_t* fmt, ...)
|
||||||
{
|
{
|
||||||
va_list ap;
|
va_list ap;
|
||||||
|
|
||||||
va_start (ap, fmt);
|
va_start (ap, fmt);
|
||||||
#if defined(_WIN32)
|
|
||||||
_vtprintf (fmt, ap);
|
|
||||||
#else
|
|
||||||
ase_vprintf (fmt, ap);
|
ase_vprintf (fmt, ap);
|
||||||
#endif
|
|
||||||
va_end (ap);
|
va_end (ap);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -160,13 +155,7 @@ static void awk_dprintf (const ase_char_t* fmt, ...)
|
|||||||
{
|
{
|
||||||
va_list ap;
|
va_list ap;
|
||||||
va_start (ap, fmt);
|
va_start (ap, fmt);
|
||||||
|
|
||||||
#if defined(_WIN32)
|
|
||||||
_vftprintf (stderr, fmt, ap);
|
|
||||||
#else
|
|
||||||
ase_vfprintf (stderr, fmt, ap);
|
ase_vfprintf (stderr, fmt, ap);
|
||||||
#endif
|
|
||||||
|
|
||||||
va_end (ap);
|
va_end (ap);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: printf.c,v 1.4 2007-01-26 16:08:55 bacon Exp $
|
* $Id: printf.c,v 1.5 2007-01-26 16:15:54 bacon Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
@ -28,7 +28,6 @@
|
|||||||
#error define ASE_CHAR_IS_MCHAR or ASE_CHAR_IS_WCHAR
|
#error define ASE_CHAR_IS_MCHAR or ASE_CHAR_IS_WCHAR
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static ase_char_t* __adjust_format (const ase_char_t* format);
|
static ase_char_t* __adjust_format (const ase_char_t* format);
|
||||||
|
|
||||||
@ -289,3 +288,4 @@ static ase_char_t* __adjust_format (const ase_char_t* format)
|
|||||||
return buf.ptr;
|
return buf.ptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user