core: remove put_format_loc()

This was replaced by C++ functions in ae299d5e66.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2024-05-31 08:26:51 +02:00 committed by bstoeger
parent 5b941ea34e
commit e7d486982f
3 changed files with 0 additions and 22 deletions

View file

@ -169,15 +169,6 @@ void put_format(struct membuffer *b, const char *fmt, ...)
va_end(args);
}
void put_format_loc(struct membuffer *b, const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
put_vformat_loc(b, fmt, args);
va_end(args);
}
void put_milli(struct membuffer *b, const char *pre, int value, const char *post)
{
int i;