This website requires JavaScript.
Explore
Help
Sign In
ace-dent
/
kolibrios-gitea
Watch
1
Star
0
Fork
0
You've already forked kolibrios-gitea
forked from
KolibriOS/kolibrios
Code
Pull Requests
Activity
5ca5de2ec9
kolibrios-gitea
/
programs
/
develop
/
ktcc
/
trunk
/
libc.obj
/
source
/
stdlib
/
abs.c
6 lines
66 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>
int
abs
(
int
a
)
{
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
return
a
>
0
?
a
:
-
a
;
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
}
Copy Permalink