diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-11-29 13:00:14 +0100 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2010-11-29 13:03:23 +0100 |
commit | 2a7f8a8b7b8a8c7d13904a496bf46519084ef883 (patch) | |
tree | 308092380bec2fe430e555cdeaff81e181095704 | |
parent | 07b336c92e82ba7e1a05329c675145953d7f40a8 (diff) | |
download | util-linux-old-2a7f8a8b7b8a8c7d13904a496bf46519084ef883.tar.gz |
libblkid: remove unnecessary __UCLIBC__ check
Signed-off-by: Karel Zak <kzak@redhat.com>
-rw-r--r-- | shlibs/blkid/src/llseek.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shlibs/blkid/src/llseek.c b/shlibs/blkid/src/llseek.c index 75b7d249..5bd0e516 100644 --- a/shlibs/blkid/src/llseek.c +++ b/shlibs/blkid/src/llseek.c @@ -30,7 +30,7 @@ #ifdef __linux__ -#if defined(HAVE_LSEEK64) && defined(HAVE_LSEEK64_PROTOTYPE) || defined(__UCLIBC__) +#if defined(HAVE_LSEEK64) && defined(HAVE_LSEEK64_PROTOTYPE) #define my_llseek lseek64 |