* Moved fssh_lseek() out of the FSShell namespace.

* Removed debug left-over.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25672 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2008-05-27 13:28:58 +00:00
parent 9c20d5cb7d
commit a55e32e52d
+6 -4
View File
@@ -18,6 +18,9 @@
#include "stat_priv.h" #include "stat_priv.h"
using namespace FSShell;
namespace FSShell { namespace FSShell {
@@ -142,7 +145,6 @@ restricted_file_restrict_io(int fd, fssh_off_t& pos, fssh_off_t size)
} }
#include <stdio.h>
void void
restricted_file_restrict_stat(struct fssh_stat* st) restricted_file_restrict_stat(struct fssh_stat* st)
{ {
@@ -170,6 +172,9 @@ to_platform_seek_mode(int fsshWhence)
} }
} // namespace FSShell
fssh_off_t fssh_off_t
fssh_lseek(int fd, fssh_off_t offset, int whence) fssh_lseek(int fd, fssh_off_t offset, int whence)
{ {
@@ -208,6 +213,3 @@ fssh_lseek(int fd, fssh_off_t offset, int whence)
return pos; return pos;
} }
} // namespace FSShell