diff options
Diffstat (limited to 'eBones/lib/libkrb/getst.c')
-rw-r--r-- | eBones/lib/libkrb/getst.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/eBones/lib/libkrb/getst.c b/eBones/lib/libkrb/getst.c index 549ec50..e50e4bb 100644 --- a/eBones/lib/libkrb/getst.c +++ b/eBones/lib/libkrb/getst.c @@ -26,7 +26,11 @@ static char rcsid[] = * the null terminator. */ -int getst(int fd, char *s, int n) +int +getst(fd, s, n) + int fd; + register char *s; + int n; { register count = n; while (read(fd, s, 1) > 0 && --count) |