]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
uuidgen.c:
authorTheodore Ts'o <tytso@mit.edu>
Thu, 8 Feb 2001 02:38:07 +0000 (02:38 +0000)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 8 Feb 2001 02:38:07 +0000 (02:38 +0000)
  Add check for HAVE_STDLIB_H before including stdlib.h

misc/uuidgen.c

index 6e3fb313a9f6170d893894116a1cf82863c7a555..1eaddbcbcb2dc8d80c71091bf26a530c1d46115d 100644 (file)
@@ -10,7 +10,9 @@
  */
 
 #include <stdio.h>
+#ifdef HAVE_STDLIB_H
 #include <stdlib.h>
+#endif
 #ifdef HAVE_GETOPT_H
 #include <getopt.h>
 #else