summaryrefslogtreecommitdiff
path: root/apps/buffering.h
diff options
context:
space:
mode:
authorBoris Gjenero <dreamlayers@rockbox.org>2011-12-19 20:12:52 +0000
committerBoris Gjenero <dreamlayers@rockbox.org>2011-12-19 20:12:52 +0000
commitfdc29d0ea4fbdd2cc1509a53122be7ec85cdb432 (patch)
tree3855b7ea3a288059458b847b4bdfabd5c48ccce4 /apps/buffering.h
parent7d61376ef80bc6ac7a817201729ee1e612625ef6 (diff)
downloadrockbox-fdc29d0ea4fbdd2cc1509a53122be7ec85cdb432.tar.gz
rockbox-fdc29d0ea4fbdd2cc1509a53122be7ec85cdb432.zip
Add more INIT_ATTR and add config.h includes to header files with INIT_ATTR.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31370 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/buffering.h')
-rw-r--r--apps/buffering.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/buffering.h b/apps/buffering.h
index ee3e7c9053..6d52794233 100644
--- a/apps/buffering.h
+++ b/apps/buffering.h
@@ -24,6 +24,7 @@
24 24
25#include <sys/types.h> 25#include <sys/types.h>
26#include <stdbool.h> 26#include <stdbool.h>
27#include "config.h"
27#include "appevents.h" 28#include "appevents.h"
28 29
29 30
@@ -47,7 +48,7 @@ enum data_type {
47 48
48 49
49/* Initialise the buffering subsystem */ 50/* Initialise the buffering subsystem */
50void buffering_init(void); 51void buffering_init(void) INIT_ATTR;
51 52
52/* Reset the buffering system */ 53/* Reset the buffering system */
53bool buffering_reset(char *buf, size_t buflen); 54bool buffering_reset(char *buf, size_t buflen);