this repo has no description
1
fork

Configure Feed

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

Update cocotron, enable locales in native libc (needed for XIM)

+4
+4
src/libelfloader/native/elfcalls.c
··· 4 4 #include <errno.h> 5 5 #include <sys/mman.h> 6 6 #include <semaphore.h> 7 + #include <locale.h> 7 8 #include "elfcalls.h" 8 9 #include "threads.h" 9 10 ··· 89 90 90 91 calls = (struct elf_calls*) strtoul(argv[1], NULL, 16); 91 92 ret = (retfunc) strtoul(argv[2], NULL, 16); 93 + 94 + // Enable locales 95 + setlocale(LC_ALL, ""); 92 96 93 97 // puts("before elfcalls_make"); 94 98