Development/Janitor

Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment
What is 4 + 8

The aim of this sub-project is to clean up Xorg tree as much as possible in the same way as it is done by the Linux Kernel Janitor project. It is also a good start for newcomers to get more familiar with Xorg development.

Tasks

It may be good to first read Modular Developers guide in case you still don't have a manually built xorg tree at your disposal. Here is a small list of tasks anyone is encouraged to update :

    114 int 
    115 main(argc, argv)
    116     int     argc;
    117     char    **argv;

    114 int 
    115 main(int argc, char **argv)

But be careful when you do make changes that you don't change the types of arguments of functions called from other packages/programs/modules due to different rules applied the to the two types of prototypes - see http://invisible-island.net/ansification/index.html for more details.