diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-08-11 23:12:55 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-08-11 23:12:55 +0000 |
commit | f4d5791b906e20388386e171905b11c29d30cfa4 (patch) | |
tree | 699f7b6bac32241228de02451be861c6eaa1c417 /libexec | |
parent | 2bc4aeddc1c6abf7902e2eea0f2953c7ea34e41c (diff) |
Prototype things.
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/identd/parse.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libexec/identd/parse.c b/libexec/identd/parse.c index 8eed72fd00f..9176078d0ed 100644 --- a/libexec/identd/parse.c +++ b/libexec/identd/parse.c @@ -26,6 +26,11 @@ #define IO_TIMEOUT 30 /* Timeout I/O operations after N seconds */ +static int check_noident __P((char *)); +ssize_t timed_read __P((int, void *, size_t, time_t)); +ssize_t timed_write __P((int, const void *, size_t, time_t)); +int parse __P((int, struct in_addr *, struct in_addr *)); + /* * A small routine to check for the existance of the ".noident" * file in a users home directory. |