451cddebfa
(Introduced incorrectly in r347229 earlier today.) As pointed out by kevans, 1.6 should be used for FreeBSD 13, like r340383. Submitted by: kevans Reported by: kib Reviewed by: jilles X-MFC-with: r347229 Differential Revision: https://reviews.freebsd.org/D20187
46 lines
495 B
Plaintext
46 lines
495 B
Plaintext
/*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
FBSD_1.2 {
|
|
sbuf_new;
|
|
sbuf_clear;
|
|
sbuf_setpos;
|
|
sbuf_bcat;
|
|
sbuf_bcpy;
|
|
sbuf_cat;
|
|
sbuf_cpy;
|
|
sbuf_printf;
|
|
sbuf_vprintf;
|
|
sbuf_putc;
|
|
sbuf_set_drain;
|
|
sbuf_trim;
|
|
sbuf_error;
|
|
sbuf_finish;
|
|
sbuf_data;
|
|
sbuf_len;
|
|
sbuf_done;
|
|
sbuf_delete;
|
|
sbuf_clear_flags;
|
|
sbuf_get_flags;
|
|
sbuf_set_flags;
|
|
};
|
|
|
|
FBSD_1.3 {
|
|
sbuf_start_section;
|
|
sbuf_end_section;
|
|
};
|
|
|
|
FBSD_1.4 {
|
|
sbuf_hexdump;
|
|
};
|
|
|
|
FBSD_1.5 {
|
|
sbuf_putbuf;
|
|
};
|
|
|
|
/* Added in FreeBSD 13.x */
|
|
FBSD_1.6 {
|
|
sbuf_printf_drain;
|
|
};
|