This website requires JavaScript.
Explore
Help
Register
Sign In
yystopf
/
openharmony_kernel_liteos_m
Watch
1
Star
0
Fork
You've already forked openharmony_kernel_liteos_m
0
Code
Issues
Pull Requests
Actions
Packages
Projects
Releases
Wiki
Activity
b244ad4ad0
openharmony_kernel_liteos_m
/
kal
/
posix
/
musl_src
/
math
/
abs.c
7 lines
62 B
C
Raw
Blame
History
#
include
<stdlib.h>
int
abs
(
int
a
)
{
return
a
>
0
?
a
:
-
a
;
}
Reference in New Issue
View Git Blame
Copy Permalink