summaryrefslogtreecommitdiff
path: root/extra/gpart/gpart-0.1h-no-_syscall.patch
diff options
context:
space:
mode:
Diffstat (limited to 'extra/gpart/gpart-0.1h-no-_syscall.patch')
-rw-r--r--extra/gpart/gpart-0.1h-no-_syscall.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/extra/gpart/gpart-0.1h-no-_syscall.patch b/extra/gpart/gpart-0.1h-no-_syscall.patch
deleted file mode 100644
index fe68d08b6..000000000
--- a/extra/gpart/gpart-0.1h-no-_syscall.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-use syscall() rather than _syscall#()
-
-http://bugs.gentoo.org/163800
-
---- src/l64seek.c
-+++ src/l64seek.c
-@@ -27,7 +27,7 @@
- static int osptr = -1;
-
- #if defined(__linux__) && defined(__i386__) && ! defined(__PIC__)
--_syscall5(int,_llseek,uint,fd,ulong,hi,ulong,lo,loff_t *,res,uint,wh)
-+#define _llseek(fd,hi,lo,res,wh) syscall(__NR__llseek,fd,hi,lo,res,wh)
- #endif
-
-