diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2022-03-08 11:04:15 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2022-03-08 11:04:15 +0000 |
commit | 9ed1226a66ee7e097ef858f7bc4b992fbcda2dc7 (patch) | |
tree | f34a79c82a4692f7e2c24a698344bc3d827d61c2 | |
parent | afd9b68d102fc4a7614885267e99299247a031d8 (diff) | |
download | rtmux-9ed1226a66ee7e097ef858f7bc4b992fbcda2dc7.tar.gz rtmux-9ed1226a66ee7e097ef858f7bc4b992fbcda2dc7.tar.bz2 rtmux-9ed1226a66ee7e097ef858f7bc4b992fbcda2dc7.zip |
Need a declaration for getpeereid also.
-rw-r--r-- | compat.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -334,6 +334,11 @@ char *strndup(const char *, size_t); void *memmem(const void *, size_t, const void *, size_t); #endif +#ifndef HAVE_GETPEEREID +/* getpeereid.c */ +int getpeereid(int, uid_t *, gid_t *); +#endif + #ifndef HAVE_DAEMON /* daemon.c */ int daemon(int, int); |