diff options
author | Ryo Nakamura <upa@haeena.net> | 2024-02-06 21:54:04 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2024-02-06 21:54:04 +0900 |
commit | 4f0669f8f86acb09f10ffb5af273f86d8d6ddd34 (patch) | |
tree | 65d5d0adfd90e31b77474993addeb065edfeb75c /src/atomic.h | |
parent | 76892a69f95f7dcf47050800385bc610f8ccf5f3 (diff) |
refactor error message-related functions
split message print fuctions (mpr_*), strerrno, and mscp_get/set_error
into print.c/h and strerrno.c/h.
ToDo: revise usages of priv_set_errv and pr_* functions.
Diffstat (limited to 'src/atomic.h')
-rw-r--r-- | src/atomic.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/atomic.h b/src/atomic.h index fc00788..33d39d9 100644 --- a/src/atomic.h +++ b/src/atomic.h @@ -6,8 +6,6 @@ #include <assert.h> #include <pthread.h> -#include <message.h> - typedef int refcnt; static inline void refcnt_inc(refcnt *cnt) |