diff options
author | Chris Robinson <[email protected]> | 2018-11-17 01:29:35 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-11-17 01:29:35 -0800 |
commit | f1731af282b3c54d2b19dedd72beb584cbda5220 (patch) | |
tree | 3f18e993ec0f51d7863ca16c3de0f788a3838021 /common/threads.c | |
parent | 3bbfd0c0996e1db310cc2b72cffaf310a2adf6fb (diff) |
Remove unneeded declarations and definitions
Diffstat (limited to 'common/threads.c')
-rw-r--r-- | common/threads.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/common/threads.c b/common/threads.c index 4cdb329d..1ecec365 100644 --- a/common/threads.c +++ b/common/threads.c @@ -31,13 +31,8 @@ extern inline althrd_t althrd_current(void); extern inline int althrd_equal(althrd_t thr0, althrd_t thr1); -extern inline void althrd_exit(int res); extern inline void althrd_yield(void); -extern inline int almtx_lock(almtx_t *mtx); -extern inline int almtx_unlock(almtx_t *mtx); -extern inline int almtx_trylock(almtx_t *mtx); - #ifndef UNUSED #if defined(__cplusplus) |