diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2008-01-15 18:10:37 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2008-01-15 18:10:37 -0800 |
commit | e92294748383b0eaca6cb7f3883cf909077963a1 (patch) | |
tree | dea66e749e366e243a4ce1b5663122d7720f9e15 | |
parent | 685fe4692583d383ffec8e0db52ea055fca0ed11 (diff) |
Convert function declarations from K&R to ANSI C
-rw-r--r-- | xset.c | 9 |
1 files changed, 2 insertions, 7 deletions
@@ -1256,11 +1256,7 @@ set_lock(Display *dpy, Bool onoff) #ifdef FONTCACHE static Status -set_font_cache(dpy, himark, lowmark, balance) - Display *dpy; - long himark; - long lowmark; - long balance; +set_font_cache(Display *dpy, long himark, long lowmark, long balance) { FontCacheSettings cs; Status status; @@ -1484,8 +1480,7 @@ query(Display *dpy) * current settings and statistics are. */ static void -query_cache_status(dpy) - Display *dpy; +query_cache_status(Display *dpy) { int dummy; FontCacheSettings cs; |