Remove extra {.
[oweals/tinc.git] / lib / dropin.c
index 23d2b136f304f798ffe9536da0fdee66d23afaaa..1c2592dfd5231b4d43751fa1a241250d29c767b4 100644 (file)
@@ -135,7 +135,6 @@ int asprintf(char **buf, const char *fmt, ...) {
 }
 
 int vasprintf(char **buf, const char *fmt, va_list ap) {
 }
 
 int vasprintf(char **buf, const char *fmt, va_list ap) {
-{
        int status;
        va_list aq;
        int len;
        int status;
        va_list aq;
        int len;
@@ -168,15 +167,3 @@ int gettimeofday(struct timeval *tv, void *tz) {
        return 0;
 }
 #endif
        return 0;
 }
 #endif
-
-#ifndef HAVE_RANDOM
-#include <openssl/rand.h>
-
-long int random(void) {
-       long int x;
-       
-       RAND_pseudo_bytes((unsigned char *)&x, sizeof(x));
-
-       return x;
-}
-#endif