2009-03-12 Santosh G Vattam <vattam.santosh@gmail.com>

PR 1378/filesystem
	* libfs/src/imfs/deviceio.c: IMFS device lseek should return the
	current offset.
This commit is contained in:
Joel Sherrill
2009-03-12 21:13:15 +00:00
parent a33af586f1
commit 434bc85b02
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2009-03-12 Santosh G Vattam <vattam.santosh@gmail.com>
PR 1378/filesystem
* libfs/src/imfs/deviceio.c: IMFS device lseek should return the
current offset.
2009-03-12 Joel Sherrill <joel.sherrill@OARcorp.com>
* ftpd/ftpd.h: Add extern C.

View File

@@ -215,7 +215,7 @@ off_t device_lseek(
int whence
)
{
return 0;
return offset;
}
/*