Added SILC Server library.
[silc.git] / lib / silccrypt / silcrng.c
index e62e58b7a90cf9311f0df091d463c0a9fddf219a..d32b708b1613dbee7a617df2d0ea86bc7b22b404 100644 (file)
@@ -25,7 +25,7 @@
  * This RNG has been rewritten twice since the creation.
  */
 
-#include "silcincludes.h"
+#include "silc.h"
 
 #ifndef WIN32
 #ifdef HAVE_GETSID
@@ -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);