628
by Matthew Fuller
Reworking the building a little so main() becomes ctwm_main(), and we
|
1
|
/*
|
2
|
* ctwm_main() prototype
|
3
|
*/
|
4
|
|
5
|
#ifndef _CTWM_CTWM_MAIN_H
|
6
|
#define _CTWM_CTWM_MAIN_H
|
7
|
|
8
|
/* Actual startup func */
|
9
|
int ctwm_main(int argc, char *argv[]);
|
10
|
|
11
|
#endif /* _CTWM_CTWM_MAIN_H */
|