diff options
author | chip <chip> | 2001-01-21 04:26:06 +0000 |
---|---|---|
committer | chip <chip> | 2001-01-21 04:26:06 +0000 |
commit | b5cb3f2f03186c514af01b835296da084ae286d9 (patch) | |
tree | 558d45efd7cfa1ffcffc6797fde6bb139116d086 /support/include/xio.h | |
parent | 2da8f89b798fc5d811fc4b252ca8ad7461d07fbd (diff) | |
download | nfs-utils-b5cb3f2f03186c514af01b835296da084ae286d9.tar.gz nfs-utils-b5cb3f2f03186c514af01b835296da084ae286d9.tar.xz nfs-utils-b5cb3f2f03186c514af01b835296da084ae286d9.zip |
2001-01-20 Chip Salzenberg <chip@valinux.com>
* support/include/xio.h (xgetc): Declare to return int.
* support/nfs/xio.c (xgetc): Return int.
(xgettok, xskip, xskipcomment): Use int for value of xgetc.
* utils/statd/statd.c (main): Use int for value of getopt.
* debian/changelog: Version 0.2.1-5.
Diffstat (limited to 'support/include/xio.h')
-rw-r--r-- | support/include/xio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/include/xio.h b/support/include/xio.h index 608d265..a8e288e 100644 --- a/support/include/xio.h +++ b/support/include/xio.h @@ -18,7 +18,7 @@ int xflock(char *fname, char *type); void xfunlock(int lockid); void xfclose(XFILE *xfp); int xgettok(XFILE *xfp, char sepa, char *tok, int len); -char xgetc(XFILE *xfp); +int xgetc(XFILE *xfp); void xungetc(int c, XFILE *xfp); void xskip(XFILE *xfp, char *str); char xskipcomment(XFILE *xfp); |