summaryrefslogtreecommitdiff
path: root/apps/metadata
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-12-25 18:43:34 +0000
committerThomas Martitz <kugel@rockbox.org>2010-12-25 18:43:34 +0000
commit6a9a8197b3b0c5eb3ca5d6093945d7ca1810b311 (patch)
treea5acf0570f89063b9ea4572b89c74c384560f9a8 /apps/metadata
parentc332bba905cc4fcf030c340f5a46fb167eb6034f (diff)
downloadrockbox-6a9a8197b3b0c5eb3ca5d6093945d7ca1810b311.tar.gz
rockbox-6a9a8197b3b0c5eb3ca5d6093945d7ca1810b311.zip
Add stdio.h include for SEEK_SET define to various files.
Patch by Thomas Jarosch. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28892 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/metadata')
-rw-r--r--apps/metadata/a52.c1
-rw-r--r--apps/metadata/mpc.c1
-rw-r--r--apps/metadata/oma.c1
-rw-r--r--apps/metadata/smaf.c1
4 files changed, 4 insertions, 0 deletions
diff --git a/apps/metadata/a52.c b/apps/metadata/a52.c
index c35b32dba3..a8aad3fa4f 100644
--- a/apps/metadata/a52.c
+++ b/apps/metadata/a52.c
@@ -19,6 +19,7 @@
19 * 19 *
20 ****************************************************************************/ 20 ****************************************************************************/
21 21
22#include <stdio.h>
22#include "metadata.h" 23#include "metadata.h"
23#include "logf.h" 24#include "logf.h"
24 25
diff --git a/apps/metadata/mpc.c b/apps/metadata/mpc.c
index f70e1d35df..0dd76fcc4b 100644
--- a/apps/metadata/mpc.c
+++ b/apps/metadata/mpc.c
@@ -21,6 +21,7 @@
21 ****************************************************************************/ 21 ****************************************************************************/
22 22
23#include <string.h> 23#include <string.h>
24#include <stdio.h>
24#include <inttypes.h> 25#include <inttypes.h>
25#include "system.h" 26#include "system.h"
26#include "metadata.h" 27#include "metadata.h"
diff --git a/apps/metadata/oma.c b/apps/metadata/oma.c
index 1dd6150e33..b82c0a4f73 100644
--- a/apps/metadata/oma.c
+++ b/apps/metadata/oma.c
@@ -42,6 +42,7 @@
42 * CODEC SUPPORT: Only ATRAC3 codec is currently supported! 42 * CODEC SUPPORT: Only ATRAC3 codec is currently supported!
43 */ 43 */
44 44
45#include <stdio.h>
45#include <stdlib.h> 46#include <stdlib.h>
46#include <inttypes.h> 47#include <inttypes.h>
47#include <string.h> 48#include <string.h>
diff --git a/apps/metadata/smaf.c b/apps/metadata/smaf.c
index fa12c99fb9..1b745d3fa1 100644
--- a/apps/metadata/smaf.c
+++ b/apps/metadata/smaf.c
@@ -19,6 +19,7 @@
19 * 19 *
20 ****************************************************************************/ 20 ****************************************************************************/
21#include <inttypes.h> 21#include <inttypes.h>
22#include <stdio.h>
22 23
23#include "string-extra.h" 24#include "string-extra.h"
24#include "system.h" 25#include "system.h"