/* * Public domain * unistd.h compatibility shim */ #include_next #ifndef LIBCOMPAT_UNISTD_H #define LIBCOMPAT_UNISTD_H #ifndef HAVE_GETENTROPY int getentropy(void *buf, size_t buflen); #endif #include #ifndef HAVE_SETGROUPS int setgroups(int ngroups, const gid_t *gidset); #endif #endif