1 diff -ur util-linux.old/fdisk/llseek.c util-linux.dev/fdisk/llseek.c
2 --- util-linux.old/fdisk/llseek.c 2003-07-13 23:13:33.000000000 +0200
3 +++ util-linux.dev/fdisk/llseek.c 2006-12-14 23:06:12.000000000 +0100
5 static int _llseek (unsigned int, unsigned long,
6 unsigned long, long long *, unsigned int);
10 -static _syscall5(int,_llseek,unsigned int,fd,unsigned long,offset_high,
11 - unsigned long, offset_low,long long *,result,
12 - unsigned int, origin)
17 /* no __NR__llseek on compilation machine - might give it explicitly */
18 static int _llseek (unsigned int fd, unsigned long oh,
19 diff -ur util-linux.old/fdisk/sfdisk.c util-linux.dev/fdisk/sfdisk.c
20 --- util-linux.old/fdisk/sfdisk.c 2005-01-04 23:31:57.000000000 +0100
21 +++ util-linux.dev/fdisk/sfdisk.c 2006-12-14 23:05:41.000000000 +0100
27 -static __attribute__used
28 -_syscall5(int, _llseek, unsigned int, fd, ulong, hi, ulong, lo,
29 - loff_t *, res, unsigned int, wh);
33 sseek(char *dev, unsigned int fd, unsigned long s) {
35 diff -ur util-linux.old/partx/partx.c util-linux.dev/partx/partx.c
36 --- util-linux.old/partx/partx.c 2004-08-23 22:13:27.000000000 +0200
37 +++ util-linux.dev/partx/partx.c 2006-12-14 23:06:42.000000000 +0100
41 #include <linux/unistd.h> /* _syscall */
43 -_syscall5(int, _llseek, uint, fd, ulong, hi, ulong, lo,
44 - long long *, res, uint, wh);
48 diff -ur util-linux.old/fdisk/llseek.c util-linux.dev/fdisk/llseek.c
49 --- util-linux.old/fdisk/llseek.c 2007-01-20 15:53:17.870636000 +0100
50 +++ util-linux.dev/fdisk/llseek.c 2007-01-20 15:55:33.458024160 +0100
54 /* no __NR__llseek on compilation machine - might give it explicitly */
55 -static int _llseek (unsigned int fd, unsigned long oh,
56 +static int __llseek (unsigned int fd, unsigned long oh,
57 unsigned long ol, long long *result,
58 unsigned int origin) {
64 -static long long my_llseek (unsigned int fd, long long offset,
65 - unsigned int origin)
70 - retval = _llseek (fd, ((unsigned long long) offset) >> 32,
71 - ((unsigned long long) offset) & 0xffffffff,
73 - return (retval == -1 ? (long long) retval : result);
75 +extern long long llseek(unsigned int fd, long long offset, unsigned int origin);
76 +#define my_llseek llseek
78 #endif /* __alpha__ */