]> code.citadel.org Git - citadel.git/commitdiff
* stress.c: include <stdlib.h> in order to get RAND_MAX
authorArt Cancro <ajc@citadel.org>
Sat, 3 Apr 2004 15:42:35 +0000 (15:42 +0000)
committerArt Cancro <ajc@citadel.org>
Sat, 3 Apr 2004 15:42:35 +0000 (15:42 +0000)
  (Submitted by Thomas.Lotterer@cw.com, Cable & Wireless / OpenPKG)

citadel/ChangeLog
citadel/stress.c

index e61d78c4d92506293b98fafcd82d85d41c70e0ce..7215c9c6288303ea5f34e27af521b993f5d4a873 100644 (file)
@@ -1,4 +1,8 @@
  $Log$
+ Revision 620.7  2004/04/03 15:42:35  ajc
+ * stress.c: include <stdlib.h> in order to get RAND_MAX
+   (Submitted by Thomas.Lotterer@cw.com, Cable & Wireless / OpenPKG)
+
  Revision 620.6  2004/04/01 04:41:55  ajc
  * Put some blankety-blank values in the default generated vCard so it's
    more acceptable to LDAP conversion
@@ -5660,4 +5664,3 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import
-
index 4cf1202162bd9693214a05b07c8a6f2ae3d069d2..22719341fd3fba40ad8da3ff46732dd14915585d 100644 (file)
@@ -60,8 +60,9 @@ const char* const message =
  * Once all threads have exited, the program exits.
  */
 
-#include <stdio.h>
+#include <stdlib.h>
 #include <unistd.h>
+#include <stdio.h>
 #include <sys/types.h>
 #include <string.h>
 #include "sysdep.h"