Add rtask module.
[bertos.git] / bertos / emul / kfile_posix.h
index b55c048db72f30e31dc200c45bcedc60225441e3..805affbdb259247d680d7cfe5ed100337cbf35c7 100644 (file)
  *
  * \brief KFile interface implementation in Posix systems.
  *
- * \version $Id$
  * \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 +56,5 @@ INLINE KFilePosix *KFILEPOSIX_CAST(KFile *fd)
 }
 
 FILE *kfile_posix_init(KFilePosix *file, const char *filename, const char *mode);
+
+#endif /* KFILE_POSIX_H */