diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2014-08-30 01:08:34 -0400 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2014-08-30 01:29:18 -0400 |
commit | da4938d6eed9c1c29e389e9a1de6a599d365fe09 (patch) | |
tree | 31d34d70b83583f91626e23fb83dbba4eb094284 /lib/rbcodec | |
parent | f3d60aea34de60c4371c04fa1b8482ca71a64b53 (diff) |
Get the last errors I hope!
Change-Id: Ia285b95480cc9ac6494b745d80892c4b1b912341
Diffstat (limited to 'lib/rbcodec')
-rw-r--r-- | lib/rbcodec/rbcodecplatform-unix.h | 8 | ||||
-rw-r--r-- | lib/rbcodec/test/SOURCES | 2 | ||||
-rw-r--r-- | lib/rbcodec/test/file.h | 4 | ||||
-rw-r--r-- | lib/rbcodec/test/warble.c | 7 |
4 files changed, 12 insertions, 9 deletions
diff --git a/lib/rbcodec/rbcodecplatform-unix.h b/lib/rbcodec/rbcodecplatform-unix.h index 5e65be3ae4..4ed25f44e8 100644 --- a/lib/rbcodec/rbcodecplatform-unix.h +++ b/lib/rbcodec/rbcodecplatform-unix.h @@ -50,15 +50,7 @@ #endif /* filesize */ -#include <sys/stat.h> off_t filesize(int fd); -/* -static inline off_t filesize(int fd) { - struct stat st; - fstat(fd, &st); - return st.st_size; -} -*/ /* snprintf */ #include <stdio.h> diff --git a/lib/rbcodec/test/SOURCES b/lib/rbcodec/test/SOURCES index d1413c758a..7afee84ae6 100644 --- a/lib/rbcodec/test/SOURCES +++ b/lib/rbcodec/test/SOURCES @@ -2,4 +2,4 @@ warble.c ../../../firmware/common/strlcpy.c ../../../firmware/common/unicode.c ../../../firmware/common/structec.c -../../../uisimulator/common/io.c +../../../firmware/common/pathfuncs.c diff --git a/lib/rbcodec/test/file.h b/lib/rbcodec/test/file.h new file mode 100644 index 0000000000..b673fa8f93 --- /dev/null +++ b/lib/rbcodec/test/file.h @@ -0,0 +1,4 @@ +#undef MAX_PATH +#define MAX_PATH 260 +#include <unistd.h> +#include <fcntl.h> diff --git a/lib/rbcodec/test/warble.c b/lib/rbcodec/test/warble.c index 6c8442ae26..8f11b9b56e 100644 --- a/lib/rbcodec/test/warble.c +++ b/lib/rbcodec/test/warble.c @@ -77,6 +77,13 @@ int find_first_set_bit(uint32_t value) return __builtin_ctz(value); } +off_t filesize(int fd) +{ + struct stat st; + fstat(fd, &st); + return st.st_size; +} + /***************** INTERNAL *****************/ static enum { MODE_PLAY, MODE_WRITE } mode; |