kolibri-libc:

- added qsort and assert
- delete junk files
- updated libc loader


git-svn-id: svn://kolibrios.org@9013 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
turbocat
2021-07-06 18:18:46 +00:00
parent e1d4f4b8d9
commit 678de81f24
13 changed files with 288 additions and 24 deletions

View File

@@ -0,0 +1,9 @@
#ifndef _ASSERT_H_
#define _ASSERT_H_
#include <stddef.h>
#include <stdlib.h>
#define assert(x) ((void)((x) || (__assert_fail(#x, __FILE__, __LINE__, __func__),0)))
#endif // _ASSERT_H_