mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Fix double declaration of __heap_mutex.
This commit is contained in:
parent
057609ee6c
commit
b3f31b1adb
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef __is_sortix_libk
|
#ifndef __is_sortix_libk
|
||||||
pthread_mutex_t __heap_mutex;
|
extern pthread_mutex_t __heap_mutex;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void __heap_unlock(void)
|
void __heap_unlock(void)
|
||||||
|
|
Loading…
Reference in a new issue