aboutsummaryrefslogtreecommitdiff
path: root/include/unistd.h
blob: 9b120346ea42c2ef8d366eff3f1cd6d4e8b7ab49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Public domain
 * unistd.h compatibility shim
 */

#include_next <unistd.h>

#ifndef LIBCRYPTOCOMPAT_UNISTD_H
#define LIBCRYPTOCOMPAT_UNISTD_H

#ifndef HAVE_GETENTROPY
int getentropy(void *buf, size_t buflen);
#endif

#endif