Commit 5281148d authored by Gildas Bazin's avatar Gildas Bazin

* src/extras/libc.c: removed unused vlc_seek().

parent d06ef508
......@@ -339,18 +339,6 @@ int64_t vlc_atoll( const char *nptr )
}
#endif
/*****************************************************************************
* lseek: reposition read/write file offset.
*****************************************************************************
* FIXME: this cast sucks!
*****************************************************************************/
#if !defined( HAVE_LSEEK )
off_t vlc_lseek( int fildes, off_t offset, int whence )
{
return SetFilePointer( (HANDLE)fildes, (long)offset, NULL, whence );
}
#endif
/*****************************************************************************
* dgettext: gettext for plugins.
*****************************************************************************/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment