Move kfile interface to the io/ directory.
[bertos.git] / bertos / emul / kfile_posix.h
index b55c048db72f30e31dc200c45bcedc60225441e3..7caa3003a52c31e8bfa9492de5e6a021d61bb2ac 100644 (file)
  * \author Luca Ottaviano <lottaviano@develer.com>
  */
 
-#include <kern/kfile.h>
+#ifndef KFILE_POSIX_H
+#define KFILE_POSIX_H
+
+#include <io/kfile.h>
 #include <stdio.h>
 
 typedef struct KFilePosix
@@ -54,3 +57,5 @@ INLINE KFilePosix *KFILEPOSIX_CAST(KFile *fd)
 }
 
 FILE *kfile_posix_init(KFilePosix *file, const char *filename, const char *mode);
+
+#endif /* KFILE_POSIX_H */