aboutsummaryrefslogtreecommitdiff
path: root/ports/breakpad/check_getcontext.cc
blob: 762147479f5c69e91c46baf0946f3cd6ebb4af2f (plain)
1
2
3
4
5
6
7
8
9
#include <ucontext.h>
#include <cstddef>

int main() {
    ucontext_t context;
    getcontext(&context);

    return 0;
}