I'm trying to use the libsodium api
test.c
#include <stdio.h>
#include <sodium.h>
int main(void){
if(sodium_init()<0){
}
return 0;
}
Here is the result of gcc -o test test.c
I've already spent too much time trying to fix this, but I can't find anything to solve the problem. What did I miss here ?
Edit : Added the result of a ls /usr/locale/include