diff options
author | monty@narttu.mysql.fi <> | 2000-11-17 02:36:46 +0200 |
---|---|---|
committer | monty@narttu.mysql.fi <> | 2000-11-17 02:36:46 +0200 |
commit | 22415489f2bef07e1617cb93a5c3f3a8c332ce25 (patch) | |
tree | 09e51a2c4d96c3afa0d966f7469e46432fc6dc58 /include | |
parent | ca2cca8dce9fa5029f5a96d6b266e0fbdc4bc5f8 (diff) | |
download | mariadb-git-22415489f2bef07e1617cb93a5c3f3a8c332ce25.tar.gz |
Fixes for bugs in the usage of IO_CACHE
Diffstat (limited to 'include')
-rw-r--r-- | include/my_sys.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/my_sys.h b/include/my_sys.h index 32b2d18fb4d..c1c47663e12 100644 --- a/include/my_sys.h +++ b/include/my_sys.h @@ -511,6 +511,7 @@ extern uint my_b_fill(IO_CACHE *info); extern void my_b_seek(IO_CACHE *info,my_off_t pos); extern uint my_b_gets(IO_CACHE *info, char *to, uint max_length); extern uint my_b_printf(IO_CACHE *info, const char* fmt, ...); +extern uint my_b_vprintf(IO_CACHE *info, const char* fmt, va_list ap); extern my_bool open_cached_file(IO_CACHE *cache,const char *dir, const char *prefix, uint cache_size, myf cache_myflags); |