diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2005-01-13 03:44:50 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2005-01-13 03:44:50 +0100 |
commit | 322d9d48523a555eab82824fded8b058cf1ba58b (patch) | |
tree | d9791c0b6ac554b5d201478268d607dd00be24f5 /misc/fsck.c | |
parent | 4b13704cbec7249ba223608143026142b8729318 (diff) | |
download | e2fsprogs-322d9d48523a555eab82824fded8b058cf1ba58b.tar.gz |
fsck.c:
Include <signal.h> to avoid compiler trouble.
Diffstat (limited to 'misc/fsck.c')
-rw-r--r-- | misc/fsck.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/misc/fsck.c b/misc/fsck.c index 4896687a..06ee02b3 100644 --- a/misc/fsck.c +++ b/misc/fsck.c @@ -52,6 +52,9 @@ #if HAVE_MALLOC_H #include <malloc.h> #endif +#ifdef HAVE_SIGNAL_H +#include <signal.h> +#endif #include "../version.h" #include "nls-enable.h" |