1
0
Fork 0
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:
Jonas 'Sortie' Termansen 2016-10-09 22:48:07 +02:00
parent 057609ee6c
commit b3f31b1adb

View file

@ -25,7 +25,7 @@
#endif
#ifndef __is_sortix_libk
pthread_mutex_t __heap_mutex;
extern pthread_mutex_t __heap_mutex;
#endif
void __heap_unlock(void)