diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 03:34:56 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 03:34:56 +0000 |
commit | 28b8b866c574d712aa5b814b000bc490c89e603e (patch) | |
tree | bc842acf3aab38f2e66e8812a18d6106a5d9bae1 /compat.h | |
parent | Adding upstream version 3.3a. (diff) | |
download | tmux-upstream/3.4.tar.xz tmux-upstream/3.4.zip |
Adding upstream version 3.4.upstream/3.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'compat.h')
-rw-r--r-- | compat.h | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -334,6 +334,18 @@ char *strndup(const char *, size_t); void *memmem(const void *, size_t, const void *, size_t); #endif +#ifndef HAVE_HTONLL +/* htonll.c */ +#undef htonll +uint64_t htonll(uint64_t); +#endif + +#ifndef HAVE_NTOHLL +/* ntohll.c */ +#undef ntohll +uint64_t ntohll(uint64_t); +#endif + #ifndef HAVE_GETPEEREID /* getpeereid.c */ int getpeereid(int, uid_t *, gid_t *); @@ -423,7 +435,9 @@ void *recallocarray(void *, size_t, size_t, size_t); #ifdef HAVE_SYSTEMD /* systemd.c */ +int systemd_activated(void); int systemd_create_socket(int, char **); +int systemd_move_pid_to_new_cgroup(pid_t, char **); #endif #ifdef HAVE_UTF8PROC |