Skip to content
Snippets Groups Projects
Commit 9d72e67b authored by Mike Frysinger's avatar Mike Frysinger
Browse files

sandbox: mark os_exit as noreturn

parent 70db4212
No related branches found
No related tags found
No related merge requests found
...@@ -95,7 +95,7 @@ int os_close(int fd); ...@@ -95,7 +95,7 @@ int os_close(int fd);
* *
* @param exit_code exit code for U-Boot * @param exit_code exit code for U-Boot
*/ */
void os_exit(int exit_code); void os_exit(int exit_code) __attribute__((noreturn));
/** /**
* Put tty into raw mode to mimic serial console better * Put tty into raw mode to mimic serial console better
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment