blob: 821ccb185c8fa8bf8cc823c9c0a2d45a999d2064 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
namespace std {
void __throw_out_of_range_fmt(const char*, ...)
__attribute__((__noreturn__))
__attribute__((__format__(__printf__, 1, 2)))
__attribute__((__weak__))
;
}
|