diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-07-31 22:54:01 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-07-31 22:54:01 -0700 |
commit | ce4e11143f982234be1076e384b31228f1cc84ae (patch) | |
tree | af718100e164c7f87ea7412d453aedf33162b591 /src/twm.c | |
parent | 8a3d3a58350506a99efd24f9856466a99bbb9c51 (diff) |
Make more functions static that aren't called from other files
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/twm.c')
-rw-r--r-- | src/twm.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -86,6 +86,8 @@ in this Software without prior written authorization from The Open Group. #include <X11/extensions/Print.h> #endif /* XPRINT */ +static void InitVariables ( void ); + XtAppContext appContext; /* Xt application context */ XtSignalId si; @@ -682,7 +684,7 @@ main(int argc, char *argv[]) /** * initialize twm variables */ -void +static void InitVariables(void) { FreeList(&Scr->BorderColorL); |