blob: f76f6c3533d11a1e5f2ba03664e12df4d8a7ed5f [file] [log] [blame]
/* -*- Mode: C; tab-width: 8; c-basic-offset: 2; indent-tabs-mode: nil; -*- */
#include "util.h"
static void breakpoint(void) {
int break_here = 1;
(void)break_here;
}
int main(void) {
execlp("/asdjfklajdfkla", "", NULL);
breakpoint();
atomic_puts("EXIT-SUCCESS");
return 0;
}