Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

libc: Correct definition of labs()' and add llabs()

Change-Id: Ie1f4a5660ef17ea3ba383441f257ad7ee02c2061

+2 -1
+2 -1
firmware/libc/include/stdlib.h
··· 50 50 #endif 51 51 52 52 #define abs(x) ((int)ABS(x)) 53 - #define labs(x) ((long)abs(x)) 53 + #define labs(x) ((long)ABS(x)) 54 + #define llabs(x) ((long long)ABS(x)) 54 55 55 56 #ifdef SIMULATOR 56 57 void exit(int status);