From 29b1f8314d309a45f3763ef99dc1e378019f5e4b Mon Sep 17 00:00:00 2001 From: Didier Roche Date: Thu, 20 Jun 2019 21:18:00 +0200 Subject: [PATCH] Fix conflicting rlim64_t conflicting types (#17) Remove "typedef unsigned long int rlim64_t" as rlim64_t is already defined in /usr/include/i386-linux-gnu/bits/resource.h on 32 bits. --- zpool.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/zpool.c b/zpool.c index b4dc9a1..1071210 100644 --- a/zpool.c +++ b/zpool.c @@ -2,8 +2,6 @@ * using libzfs from go language, and make go code shorter and more readable. */ -typedef unsigned long int rlim64_t; - #include #include #include