From 572f667e069b1bd468eba2a704e364b810f40b78 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Tue, 6 May 2014 13:51:39 +0200 Subject: rtems: Use off_t instead of __loff_t This avoids a compile-time error with recent Newlib versions. --- direct/yaffsfs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/yaffsfs.h b/direct/yaffsfs.h index 57caca0..1e2c70b 100644 --- a/direct/yaffsfs.h +++ b/direct/yaffsfs.h @@ -27,7 +27,7 @@ #ifdef __rtems__ #include -typedef __loff_t loff_t; +typedef off_t loff_t; #endif //typedef long off_t; -- cgit v1.2.3