diff options
author | Denis Vlasenko | 2006-11-17 20:29:00 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-11-17 20:29:00 +0000 |
commit | a7189f01a4a19a9c8852e84b322fc3d8cbda92eb (patch) | |
tree | 436e3ab7b6f055553199153e99f6b7589fb488ec /e2fsprogs/blkid/devname.c | |
parent | 04c6386c45cd795617dd754066ac3bd6a62757cb (diff) | |
download | busybox-a7189f01a4a19a9c8852e84b322fc3d8cbda92eb.zip busybox-a7189f01a4a19a9c8852e84b322fc3d8cbda92eb.tar.gz |
add -Wundef, fix uncovered bugs
Diffstat (limited to 'e2fsprogs/blkid/devname.c')
-rw-r--r-- | e2fsprogs/blkid/devname.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/e2fsprogs/blkid/devname.c b/e2fsprogs/blkid/devname.c index 7606e40..532aeea 100644 --- a/e2fsprogs/blkid/devname.c +++ b/e2fsprogs/blkid/devname.c @@ -14,20 +14,20 @@ #include <stdio.h> #include <string.h> -#if HAVE_UNISTD_H +#ifdef HAVE_UNISTD_H #include <unistd.h> #endif #include <stdlib.h> #include <string.h> #include <ctype.h> -#if HAVE_SYS_TYPES_H +#ifdef HAVE_SYS_TYPES_H #include <sys/types.h> #endif #include <sys/stat.h> -#if HAVE_ERRNO_H +#ifdef HAVE_ERRNO_H #include <errno.h> #endif -#if HAVE_SYS_MKDEV_H +#ifdef HAVE_SYS_MKDEV_H #include <sys/mkdev.h> #endif #include <time.h> |