summaryrefslogtreecommitdiff
path: root/core/host/panic.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/host/panic.c')
-rw-r--r--core/host/panic.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/host/panic.c b/core/host/panic.c
index 0dd00ac604..e354757d75 100644
--- a/core/host/panic.c
+++ b/core/host/panic.c
@@ -3,16 +3,16 @@
* found in the LICENSE file.
*/
-#include "config.h"
-#include "panic.h"
-#include "stack_trace.h"
-
#include <assert.h>
-#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
+#include <stdint.h>
#include <string.h>
+#include "config.h"
+#include "panic.h"
+#include "stack_trace.h"
+
void panic_assert_fail(const char *msg, const char *func, const char *fname,
int linenum)
{