Compiler problem
Brought to you by:
lkunc
When running make the comiler complains about:
main-gimp.c: In Funktion ťqueryŤ:
main-gimp.c:365: Warnung: implicit declaration of
function `setlocale'
main-gimp.c:365: error: `LC_ALL' undeclared (first use
in this function)
main-gimp.c:365: error: (Each undeclared identifier is
reported only once
main-gimp.c:365: error: for each function it appears in.)
Adding the library in main-gimp.c:
#include <locale.h>
fixes the problem.