summaryrefslogtreecommitdiff
path: root/apps/rbcodecconfig.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/rbcodecconfig.h')
-rw-r--r--apps/rbcodecconfig.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/apps/rbcodecconfig.h b/apps/rbcodecconfig.h
new file mode 100644
index 0000000000..6c7a0749f0
--- /dev/null
+++ b/apps/rbcodecconfig.h
@@ -0,0 +1,22 @@
1#ifndef RBCODECCONFIG_H_INCLUDED
2#define RBCODECCONFIG_H_INCLUDED
3
4#include "config.h"
5
6#ifndef __ASSEMBLER__
7
8/* NULL, offsetof, size_t */
9#include <stddef.h>
10
11/* ssize_t, off_t, open, close, read, lseek, SEEK_SET, SEEK_CUR, SEEK_END,
12 * O_RDONLY, O_WRONLY, O_CREAT, O_APPEND, MAX_PATH, filesize */
13#include "file.h"
14
15/* {,u}int{8,16,32,64}_t, , intptr_t, uintptr_t, bool, true, false, swap16,
16 * swap32, hto{be,le}{16,32}, {be,le}toh{16,32}, ROCKBOX_{BIG,LITTLE}_ENDIAN,
17 * {,U}INT{8,16,32,64}_{MIN,MAX} */
18#include "system.h"
19
20#endif
21
22#endif