bool -> SilcBool
[silc.git] / lib / silccrypt / silcrng.c
index e62e58b7a90cf9311f0df091d463c0a9fddf219a..2e9d935e5c36f1161aa5221c3a0420be45b50b93 100644 (file)
@@ -638,7 +638,7 @@ SilcRng global_rng = NULL;
 /* Initialize global RNG. If `rng' is provided it is set as the global
    RNG object (it can be allocated by the application for example). */
 
-bool silc_rng_global_init(SilcRng rng)
+SilcBool silc_rng_global_init(SilcRng rng)
 {
   if (rng) {
     global_rng = rng;
@@ -653,7 +653,7 @@ bool silc_rng_global_init(SilcRng rng)
 
 /* Uninitialize global RNG */
 
-bool silc_rng_global_uninit(void)
+SilcBool silc_rng_global_uninit(void)
 {
   if (global_rng) {
     silc_rng_free(global_rng);