Hi, I was trying to work with the header files and I found that some variables and functions are not used, only declared,...
Probably more people can help with this issue. Is easy, you only need open a header file and for every function/struct/var if is used. "grep" is your friend here: grep variable * The compiler checks if the .c files variables are used, so you don't need check them. But, in the .c files, the functions that are not static should be used, therefore you can check the functions too with grep. If the function is used only in the file, change it to static. Now you can help with windowmaker, make your own patch :-) kix PS. I know that I could rebase some patches :-( -- To unsubscribe, send mail to [email protected].
