Files
lk/lib/libc/abort.c

15 lines
287 B
C

/*
* Copyright (c) 2020 Travis Geiselbrecht
*
* Use of this source code is governed by a MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT
*/
#include <stdlib.h>
#include <lk/debug.h>
void abort(void) {
panic("abort\n");
}