diff options
author | Ben Elliston <bje@gnu.org> | 2007-01-09 00:54:00 +0000 |
---|---|---|
committer | Ben Elliston <bje@gnu.org> | 2007-01-09 00:54:00 +0000 |
commit | 5a308d4f2dd4bfd901a3fe2691ccb0c9f9c02c40 (patch) | |
tree | f4ef96aa8193ab9a1965986dcd7baa2702239540 /libgloss/spu | |
parent | 8e0e8f40fb7a6ea998062955b15d6de09cb54b72 (diff) | |
download | newlib-5a308d4f2dd4bfd901a3fe2691ccb0c9f9c02c40.zip newlib-5a308d4f2dd4bfd901a3fe2691ccb0c9f9c02c40.tar.gz newlib-5a308d4f2dd4bfd901a3fe2691ccb0c9f9c02c40.tar.bz2 |
* spu/exit.c (_exit): Finish with an infinite loop to eliminate a
warning about this noreturn function returning.
Diffstat (limited to 'libgloss/spu')
-rw-r--r-- | libgloss/spu/exit.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libgloss/spu/exit.c b/libgloss/spu/exit.c index 1b639b5..899f324 100644 --- a/libgloss/spu/exit.c +++ b/libgloss/spu/exit.c @@ -42,4 +42,7 @@ void _exit(int rc) "1:\n" " stop 0x2000\n" : : "r" (rc) ); + + for (;;) + ; } |