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

« back to all changes in this revision

Viewing changes to src/plug/io/w32.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:
126
126
        return close(fd);
127
127
}
128
128
 
129
 
u64 w32_lseek(int fildes, u64 offset, int whence)
 
129
ut64 w32_lseek(int fildes, ut64 offset, int whence)
130
130
{
131
131
        int mode = 0;
132
 
        u64 off;
 
132
        ut64 off;
133
133
 
134
134
        if (fildes == w32_fd) {
135
135
                switch(whence) {