Treewide: use bool instead of _Bool
[collectd.git] / src / daemon / utils_random.c
index cf926f9..def0ba6 100644 (file)
@@ -32,7 +32,7 @@
 #include <pthread.h>
 
 static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
-static _Bool have_seed = 0;
+static bool have_seed = 0;
 static unsigned short seed[3];
 
 static void cdrand_seed(void) {