X-Git-Url: https://git.librecmc.org/?p=oweals%2Ftinc.git;a=blobdiff_plain;f=lib%2Fdropin.c;h=a169cf6ad6c6a4b263a2aa26f27bf11d5589c4dd;hp=23d2b136f304f798ffe9536da0fdee66d23afaaa;hb=c23fcf555ee4b69f03b76a0ffb731c3a475a77e7;hpb=5e0efd53e797a2b5468b91b41b6122f3b942efb2 diff --git a/lib/dropin.c b/lib/dropin.c index 23d2b13..a169cf6 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 @@ -135,7 +135,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 +167,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