blob: 4abb00d75b299bf04774ab6aea6f9c57d091469a (
plain)
1
2
3
4
5
6
7
|
#include <bits/ensure.h>
#include <printf.h>
size_t parse_printf_format(const char * __restrict, size_t, int * __restrict) {
__ensure(!"Not implemented");
__builtin_unreachable();
}
|