1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Merge with 4.0

This commit is contained in:
monty@narttu.mysql.fi
2003-04-03 21:19:12 +03:00
27 changed files with 300 additions and 75 deletions

View File

@ -35,6 +35,7 @@
int my_snprintf(char* to, size_t n, const char* fmt, ...)
{
int result;
va_list args;
int result;
va_start(args,fmt);
@ -127,6 +128,7 @@ int my_vsnprintf(char *to, size_t n, const char* fmt, va_list ap)
return (uint) (to - start);
}
#ifdef MAIN
#define OVERRUN_SENTRY 250
static void my_printf(const char * fmt, ...)
@ -147,6 +149,7 @@ static void my_printf(const char * fmt, ...)
va_end(ar);
}
int main()
{