diff options
author | Drew DeVault <[email protected]> | 2015-08-20 09:34:06 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2015-08-20 09:34:06 -0400 |
commit | 84f01a67bdaef4dbff787caa4b076ed60e257c51 (patch) | |
tree | 0d264e5a6232071a8277c59216f85aac64583459 /include/log.h | |
parent | 579fe70ed92ce65d5a761ebdbb6c458b5f919687 (diff) | |
parent | f8787ce69e35be4569aa76a2e35f540b20ed40a4 (diff) |
Merge pull request #75 from minus7/ipc
i3 IPC
Diffstat (limited to 'include/log.h')
-rw-r--r-- | include/log.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/log.h b/include/log.h index 7aea2ded..47a83321 100644 --- a/include/log.h +++ b/include/log.h @@ -13,6 +13,7 @@ typedef enum { void init_log(int verbosity); void sway_log_colors(int mode); void sway_log(int verbosity, const char* format, ...) __attribute__((format(printf,2,3))); +void sway_log_errno(int verbosity, char* format, ...) __attribute__((format(printf,2,3))); void sway_abort(const char* format, ...) __attribute__((format(printf,1,2))); bool sway_assert(bool condition, const char* format, ...) __attribute__((format(printf,2,3))); |