diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2019-10-28 22:54:16 -0700 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2019-10-28 22:54:16 -0700 |
| commit | 966348c4da9f720a8ea40d5e31a8aca8b501efa3 (patch) | |
| tree | 2d707d7d6c85453fdc187ecd5e8c8cda34493300 /include | |
| parent | 38fe1ee730d5dc2a054495d9f470f04df5b44bc7 (diff) | |
Rename symbol set_cloexec to sway_set_cloexec, remove duplicates.
set_cloexec is defined by both sway and wlroots (and who-knows-else),
so rename the sway one for supporting static linkage. We also remove
the duplicate version of this in client/.
Fixes: https://github.com/swaywm/sway/issues/4677
Diffstat (limited to 'include')
| -rw-r--r-- | include/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/util.h b/include/util.h index 6d9454e0..3cba49f0 100644 --- a/include/util.h +++ b/include/util.h @@ -32,6 +32,6 @@ float parse_float(const char *value); const char *sway_wl_output_subpixel_to_string(enum wl_output_subpixel subpixel); -bool set_cloexec(int fd, bool cloexec); +bool sway_set_cloexec(int fd, bool cloexec); #endif |
