diff options
Diffstat (limited to 'nx-X11/lib/X11/GetFPath.c')
-rw-r--r-- | nx-X11/lib/X11/GetFPath.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/nx-X11/lib/X11/GetFPath.c b/nx-X11/lib/X11/GetFPath.c index 72ab74ed7..7d497c92e 100644 --- a/nx-X11/lib/X11/GetFPath.c +++ b/nx-X11/lib/X11/GetFPath.c @@ -29,9 +29,9 @@ in this Software without prior written authorization from The Open Group. #endif #include "Xlibint.h" -char **XGetFontPath(dpy, npaths) -register Display *dpy; -int *npaths; /* RETURN */ +char **XGetFontPath( + register Display *dpy, + int *npaths) /* RETURN */ { xGetFontPathReply rep; register long nbytes; @@ -81,8 +81,7 @@ int *npaths; /* RETURN */ } int -XFreeFontPath (list) -char **list; +XFreeFontPath (char **list) { if (list != NULL) { Xfree (list[0]-1); |