aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorPaul Fox <pgf@brightstareng.com>2005-07-27 14:20:52 +0000
committerPaul Fox <pgf@brightstareng.com>2005-07-27 14:20:52 +0000
commite5ba382b9919ca0844c37725bddd7acbdc9ee255 (patch)
tree68b3504764b646e9ed22b6c58d5abd5b2dcd662e /libbb
parent193c8c73834b701f93c421fc88a2ecb715fd6fe5 (diff)
downloadbusybox-w32-e5ba382b9919ca0844c37725bddd7acbdc9ee255.tar.gz
busybox-w32-e5ba382b9919ca0844c37725bddd7acbdc9ee255.tar.bz2
busybox-w32-e5ba382b9919ca0844c37725bddd7acbdc9ee255.zip
move the ifdef to after libbb.h include, so it can do some good.
Diffstat (limited to 'libbb')
-rw-r--r--libbb/loop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/loop.c b/libbb/loop.c
index a4e1ffba6..c4c3da4b1 100644
--- a/libbb/loop.c
+++ b/libbb/loop.c
@@ -19,7 +19,6 @@
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */ 20 */
21 21
22#ifdef CONFIG_FEATURE_MOUNT_LOOP
23#include <features.h> 22#include <features.h>
24#if defined (__GLIBC__) && !defined(__UCLIBC__) 23#if defined (__GLIBC__) && !defined(__UCLIBC__)
25#include <linux/posix_types.h> 24#include <linux/posix_types.h>
@@ -31,6 +30,7 @@
31#include <unistd.h> 30#include <unistd.h>
32#include <sys/ioctl.h> 31#include <sys/ioctl.h>
33#include "libbb.h" 32#include "libbb.h"
33#ifdef CONFIG_FEATURE_MOUNT_LOOP
34 34
35/* Grumble... The 2.6.x kernel breaks asm/posix_types.h 35/* Grumble... The 2.6.x kernel breaks asm/posix_types.h
36 * so we get to try and cope as best we can... */ 36 * so we get to try and cope as best we can... */