diff options
author | maximilian attems <max@stro.at> | 2008-07-24 15:22:11 +0200 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2008-07-28 11:09:42 +0200 |
commit | 7e0c3d28e9f9c858e15847284c5614c265de032e (patch) | |
tree | e3db8f28b3a9ba7a61d535ae423c72232bb51a5f /fdisk | |
parent | d5c28ebc32697ca6461990cee69fd47a56b3a730 (diff) | |
download | util-linux-7e0c3d28e9f9c858e15847284c5614c265de032e.tar.gz |
fdisk: exit(3) needs stdlib.h include
partitiontype.c:57: warning: incompatible implicit declaration of built-in function ‘exit’
Signed-off-by: maximilian attems <max@stro.at>
Diffstat (limited to 'fdisk')
-rw-r--r-- | fdisk/partitiontype.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fdisk/partitiontype.c b/fdisk/partitiontype.c index 5649c72a..0ee44a0b 100644 --- a/fdisk/partitiontype.c +++ b/fdisk/partitiontype.c @@ -8,6 +8,7 @@ */ #include <stdio.h> #include <fcntl.h> +#include <stdlib.h> struct aix_label { unsigned int magic; |