Added initial unfs3 sources for version 0.9.22+dfsg-1maemo2
[unfs3] / unfs3 / backend.h
1 /*
2  * UNFS3 low-level filesystem calls
3  * (C) 2004, Pascal Schmidt
4  * see file LICENSE for license details
5  */
6
7 #ifndef UNFS3_BACKEND_H
8 #define UNFS3_BACKEND_H
9
10 #ifdef WIN32
11 #include "backend_win32.h"
12 #else
13 #include "backend_unix.h"
14 #endif /* WIN32 */
15
16 #endif