This website requires JavaScript.
Explore
Help
Sign In
KolibriOS
/
kolibrios
Watch
12
Star
4
Fork
12
You've already forked kolibrios
Code
Issues
78
Pull Requests
5
Projects
Releases
Activity
ec3af7f664
kolibrios
/
programs
/
develop
/
ktcc
/
trunk
/
libc.obj
/
source
/
stdlib
/
malloc.c
7 lines
102 B
C
Raw
Normal View
History
Unescape
Escape
Added git source kolibri-libc and Configured autobuild git-svn-id: svn://kolibrios.org@8687 a494cfbc-eb01-0410-851d-a64ba20cac60
2021-04-27 18:33:31 +02:00
#
include
<stdlib.h>
#
include
<sys/ksys.h>
libc.obj: - Formatted by clang-format (WebKit-style). - Removed unnecessary errno linux. - Added KOS error codes. - String functions have been replaced with more optimal ones for x86. - Changed wrappers for 70 sysfunction. git-svn-id: svn://kolibrios.org@9765 a494cfbc-eb01-0410-851d-a64ba20cac60
2022-04-15 11:00:55 +02:00
void
*
malloc
(
size_t
size
)
{
Added git source kolibri-libc and Configured autobuild git-svn-id: svn://kolibrios.org@8687 a494cfbc-eb01-0410-851d-a64ba20cac60
2021-04-27 18:33:31 +02:00
return
_ksys_alloc
(
size
)
;
}
Reference in New Issue
Copy Permalink