While trying to compile control-panel from source, I ran into the problem that a bunch of functions weren't being found. (fprintf, malloc, and others which I can't remember) To solve this, I added these two lines to control-panel.c: #include <stdio.h> #include <stdlib.h> Then the program was able to compile normally.
this was fixed in some later version of control panel...