X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=lib%2Fdropin.c;h=0a665cccd10c39260fdd0fb04d0c6056866c89f8;hp=23d2b136f304f798ffe9536da0fdee66d23afaaa;hb=0e6856b1379e278aa5ed116d0911851339a6064c;hpb=5e0efd53e797a2b5468b91b41b6122f3b942efb2 diff --git a/lib/dropin.c b/lib/dropin.c index 23d2b136..0a665ccc 100644 --- a/lib/dropin.c +++ b/lib/dropin.c @@ -1,7 +1,7 @@ /* dropin.c -- a set of drop-in replacements for libc functions Copyright (C) 2000-2005 Ivo Timmermans, - 2000-2006 Guus Sliepen + 2000-2009 Guus Sliepen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -16,8 +16,6 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - - $Id$ */ #include "system.h" @@ -135,7 +133,6 @@ int asprintf(char **buf, const char *fmt, ...) { } int vasprintf(char **buf, const char *fmt, va_list ap) { -{ int status; va_list aq; int len; @@ -168,15 +165,3 @@ int gettimeofday(struct timeval *tv, void *tz) { return 0; } #endif - -#ifndef HAVE_RANDOM -#include - -long int random(void) { - long int x; - - RAND_pseudo_bytes((unsigned char *)&x, sizeof(x)); - - return x; -} -#endif