Welcome to mirror list, hosted at ThFree Co, Russian Federation.

arc4random_stir.c « libc « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 851c4e68f88c50484fd426aa8817e7b54c243605 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* libc/arc4random_stir.c

   Copyright 2016 Red Hat, Inc.

This file is part of Cygwin.

This software is a copyrighted work licensed under the terms of the
Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
details. */

#include <sys/types.h>

/* Exported functions removed from OpenBSD in the meantime.  Keep them,
   but make them non-functional.  They don't return a value anyway. */

void
arc4random_stir(void)
{
}

void
arc4random_addrandom(u_int8_t *dat, int datlen)
{
}