]> git.sesse.net Git - vlc/commitdiff
* src/extras/libc.c: removed unused vlc_seek().
authorGildas Bazin <gbazin@videolan.org>
Wed, 9 Feb 2005 09:37:08 +0000 (09:37 +0000)
committerGildas Bazin <gbazin@videolan.org>
Wed, 9 Feb 2005 09:37:08 +0000 (09:37 +0000)
src/extras/libc.c

index e68ce4d2487046fb0ed78373434aea91f02ea606..b96ba93e059adf047233bcd1a97ce6f544747df7 100644 (file)
@@ -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.
  *****************************************************************************/