Add missing return type to stub_exit.

This commit is contained in:
Gareth McMullin 2015-03-08 22:45:53 -07:00
parent acfd258aa7
commit 41256e3c2a
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
#ifndef __STUB_H
#define __STUB_H
static inline __attribute__((always_inline))
static inline void __attribute__((always_inline))
stub_exit(const int code)
{
asm("bkpt %0"::"i"(code));