~ubuntu-branches/ubuntu/utopic/cdrdao/utopic

« back to all changes in this revision

Viewing changes to scsilib/libschily/stdio/fileseek.c

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Suffield
  • Date: 2004-06-24 22:33:16 UTC
  • Revision ID: james.westby@ubuntu.com-20040624223316-534onzugaeeyq61j
Tags: upstream-1.1.9
ImportĀ upstreamĀ versionĀ 1.1.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* @(#)fileseek.c       1.11 03/06/15 Copyright 1986, 1996-2003 J. Schilling */
 
2
/*
 
3
 *      Copyright (c) 1986, 1996-2003 J. Schilling
 
4
 */
 
5
/*
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 2, or (at your option)
 
9
 * any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License along with
 
17
 * this program; see the file COPYING.  If not, write to the Free Software
 
18
 * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
19
 */
 
20
 
 
21
#include "io.h"
 
22
 
 
23
/*
 
24
 * Note that because of a definition in io.h we are using fseeko()/ftello()
 
25
 * instead of fseek()/ftell() if available.
 
26
 */
 
27
 
 
28
static  char    _seekerr[]      = "file_seek_err";
 
29
 
 
30
EXPORT int
 
31
fileseek(f, pos)
 
32
        register FILE   *f;
 
33
        off_t   pos;
 
34
{
 
35
        int     ret;
 
36
 
 
37
        down(f);
 
38
        ret = fseek(f, pos, SEEK_SET);
 
39
        if (ret < 0 && !(my_flag(f) & _IONORAISE))
 
40
                raisecond(_seekerr, 0L);
 
41
        return (ret);
 
42
}