diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2022-03-08 11:04:15 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2022-04-06 14:19:50 +0100 |
commit | 759f94965454a043285813cf4fd8b83944587973 (patch) | |
tree | f0f291373a1381a5f1006955c1df0b8cccb3a85f | |
parent | f1d87241987e4b46ae839395c06d9eb48e630fa7 (diff) | |
download | rtmux-759f94965454a043285813cf4fd8b83944587973.tar.gz rtmux-759f94965454a043285813cf4fd8b83944587973.tar.bz2 rtmux-759f94965454a043285813cf4fd8b83944587973.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); |