From 7e0c3d28e9f9c858e15847284c5614c265de032e Mon Sep 17 00:00:00 2001 From: maximilian attems Date: Thu, 24 Jul 2008 15:22:11 +0200 Subject: [PATCH] fdisk: exit(3) needs stdlib.h include MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit partitiontype.c:57: warning: incompatible implicit declaration of built-in function ‘exit’ Signed-off-by: maximilian attems --- fdisk/partitiontype.c | 1 + 1 file changed, 1 insertion(+) 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 #include +#include struct aix_label { unsigned int magic; -- 2.39.5