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
1 changed files with 1 additions and 1 deletions

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)