diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2012-01-25 22:49:19 +0100 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2012-01-25 22:49:19 +0100 |
| commit | 9a4656bfd0d044747446bcb469ea2703e8fff86c (patch) | |
| tree | 62cc8b44e25e37744606955929aede5d76bee562 | |
| parent | 63ddd15fc6a4760a33a160089699065a4d295f9e (diff) | |
| download | rockbox-9a4656bfd0d044747446bcb469ea2703e8fff86c.zip rockbox-9a4656bfd0d044747446bcb469ea2703e8fff86c.tar.gz rockbox-9a4656bfd0d044747446bcb469ea2703e8fff86c.tar.bz2 rockbox-9a4656bfd0d044747446bcb469ea2703e8fff86c.tar.xz | |
Include stdlib.h for atexit().
Change-Id: I561bdaf0c6a0b806a136909e40cc4fb2805f6aa3
| -rw-r--r-- | firmware/target/hosted/debug-hosted.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/target/hosted/debug-hosted.c b/firmware/target/hosted/debug-hosted.c index 7b87159..678b435 100644 --- a/firmware/target/hosted/debug-hosted.c +++ b/firmware/target/hosted/debug-hosted.c @@ -22,6 +22,7 @@ #include <stdarg.h> #include <stdio.h> #include <string.h> +#include <stdlib.h> #ifdef WIN32 #include <windows.h> |