diff options
Diffstat (limited to '')
-rw-r--r-- | include/unistd.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/unistd.h b/include/unistd.h new file mode 100644 index 0000000..ae82b95 --- /dev/null +++ b/include/unistd.h | |||
@@ -0,0 +1,9 @@ | |||
1 | #include_next <unistd.h> | ||
2 | |||
3 | #ifndef LIBCRYPTOCOMPAT_UNISTD_H | ||
4 | #define LIBCRYPTOCOMPAT_UNISTD_H | ||
5 | |||
6 | int getentropy(void *buf, size_t buflen); | ||
7 | int issetugid(void); | ||
8 | |||
9 | #endif | ||