mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-18 04:19:21 +08:00
acc5f02ce8
Don't use u_char, u_short, u_int or u_long in Cygwin, unless it refers to the Winsock types. Use u_intN_t in BSD-based sources, unsigned char where strings are concerned, uintN_t otherwise. Also: * net.cc: Fix comment, we're not using u_long anymore. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
25 lines
490 B
C
25 lines
490 B
C
/* 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)
|
|
{
|
|
}
|