From 6b7e807e0a69462b4757facdd8a0b2ce364da679 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Thu, 8 Feb 2001 02:38:07 +0000 Subject: [PATCH] uuidgen.c: Add check for HAVE_STDLIB_H before including stdlib.h --- misc/uuidgen.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/misc/uuidgen.c b/misc/uuidgen.c index 6e3fb31..1eaddbc 100644 --- a/misc/uuidgen.c +++ b/misc/uuidgen.c @@ -10,7 +10,9 @@ */ #include +#ifdef HAVE_STDLIB_H #include +#endif #ifdef HAVE_GETOPT_H #include #else -- 1.8.3.1