diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2006-05-30 16:28:42 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2006-05-30 16:28:42 +0200 |
commit | df3e159870beae4b02f1f59bf2a28e3e0fdd6519 (patch) | |
tree | 1eaf1930c937958b92e15b28c3a9f2e4e22711d6 /lib/ext2fs | |
parent | 406ba674fe33469c600a4dd7ed5853cac34ca4e7 (diff) | |
download | e2fsprogs-df3e159870beae4b02f1f59bf2a28e3e0fdd6519.tar.gz |
Add missing #include <ctype.h>.
Signed-off-by: Matthias Andree <matthias.andree@gmx.de>
Diffstat (limited to 'lib/ext2fs')
-rw-r--r-- | lib/ext2fs/getsize.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ext2fs/getsize.c b/lib/ext2fs/getsize.c index d59a8931..4f87311e 100644 --- a/lib/ext2fs/getsize.c +++ b/lib/ext2fs/getsize.c @@ -44,6 +44,7 @@ #if HAVE_SYS_STAT_H #include <sys/stat.h> #endif +#include <ctype.h> #if defined(__linux__) && defined(_IO) && !defined(BLKGETSIZE) #define BLKGETSIZE _IO(0x12,96) /* return device size */ |