| 283 | } |
| 284 | |
| 285 | int |
| 286 | printf_uuid(struct uuid *uuid) |
| 287 | { |
| 288 | char buf[38]; |
| 289 | |
| 290 | snprintf_uuid(buf, sizeof(buf), uuid); |
| 291 | return (printf("%s", buf)); |
| 292 | } |
| 293 | |
| 294 | int |
| 295 | sbuf_printf_uuid(struct sbuf *sb, struct uuid *uuid) |
nothing calls this directly
no test coverage detected