~ubuntu-branches/ubuntu/maverick/radare/maverick

« back to all changes in this revision

Viewing changes to src/plug/io/posix.c

  • Committer: Bazaar Package Importer
  • Author(s): SevenMachines
  • Date: 2010-09-07 15:44:27 UTC
  • mfrom: (1.1.3 upstream) (2.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100907154427-37u92vu12tqabqqz
Tags: 1:1.5.2-3ubuntu1
* Merge from debian testing (LP: #621016)
* debian/control:
     + libvala-dev transition to libval-0.10-dev (LP: #618809) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
        return close(fd);
42
42
}
43
43
 
44
 
static u64 posix_lseek(int fildes, u64 offset, int whence)
 
44
static ut64 posix_lseek(int fildes, ut64 offset, int whence)
45
45
{
46
46
#if __WINDOWS__ 
47
47
        return _lseek(fildes,(long)offset,whence);