Changeset 5281148de4fb4ac815798a43aa67542a07315166
- Timestamp:
- 02/09/05 10:37:08
(4 years ago)
- Author:
- Gildas Bazin <gbazin@videolan.org>
- git-committer:
- Gildas Bazin <gbazin@videolan.org> 1107941828 +0000
- git-parent:
[d06ef50813c0c809fec669e95b4391003e19b4df]
- git-author:
- Gildas Bazin <gbazin@videolan.org> 1107941828 +0000
- Message:
* src/extras/libc.c: removed unused vlc_seek().
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r698feb9 |
r5281148 |
|
| 341 | 341 | |
|---|
| 342 | 342 | /***************************************************************************** |
|---|
| 343 | | * lseek: reposition read/write file offset. |
|---|
| 344 | | ***************************************************************************** |
|---|
| 345 | | * FIXME: this cast sucks! |
|---|
| 346 | | *****************************************************************************/ |
|---|
| 347 | | #if !defined( HAVE_LSEEK ) |
|---|
| 348 | | off_t vlc_lseek( int fildes, off_t offset, int whence ) |
|---|
| 349 | | { |
|---|
| 350 | | return SetFilePointer( (HANDLE)fildes, (long)offset, NULL, whence ); |
|---|
| 351 | | } |
|---|
| 352 | | #endif |
|---|
| 353 | | |
|---|
| 354 | | /***************************************************************************** |
|---|
| 355 | 343 | * dgettext: gettext for plugins. |
|---|
| 356 | 344 | *****************************************************************************/ |
|---|