diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-07-12 18:57:58 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-07-12 18:57:58 +0000 |
| commit | 51295a4d3e4c551df85249433c490208dc7fd23d (patch) | |
| tree | c116431af8e1f042b25e0f70c63c437cf7ff8d63 /lib/libcompat | |
| parent | af7a29993083b1562f01c87bb774fbe4fc3579e7 (diff) | |
Notes
Diffstat (limited to 'lib/libcompat')
| -rw-r--r-- | lib/libcompat/4.1/ftime.3 | 2 | ||||
| -rw-r--r-- | lib/libcompat/4.1/ftime.c | 3 | ||||
| -rw-r--r-- | lib/libcompat/4.3/cfree.c | 2 | ||||
| -rw-r--r-- | lib/libcompat/4.3/insque.c | 1 | ||||
| -rw-r--r-- | lib/libcompat/4.3/lsearch.c | 1 | ||||
| -rw-r--r-- | lib/libcompat/4.3/remque.c | 1 | ||||
| -rw-r--r-- | lib/libcompat/4.3/rexec.c | 1 |
7 files changed, 9 insertions, 2 deletions
diff --git a/lib/libcompat/4.1/ftime.3 b/lib/libcompat/4.1/ftime.3 index 61d02a6f0285b..c1e9c3a0dc823 100644 --- a/lib/libcompat/4.1/ftime.3 +++ b/lib/libcompat/4.1/ftime.3 @@ -40,7 +40,7 @@ .Sh SYNOPSIS .Fd #include <sys/types.h> .Fd #include <sys/timeb.h> -.Ft struct timeb * +.Ft int .Fn ftime "struct timeb *tp" .Sh DESCRIPTION .Bf -symbolic diff --git a/lib/libcompat/4.1/ftime.c b/lib/libcompat/4.1/ftime.c index ccd3a64beea7b..8f6efb1f96eba 100644 --- a/lib/libcompat/4.1/ftime.c +++ b/lib/libcompat/4.1/ftime.c @@ -29,13 +29,14 @@ */ #ifndef lint -static char rcsid[] = "$Id: ftime.c,v 1.3 1994/05/06 06:42:21 cgd Exp $"; +static char rcsid[] = "$Id: ftime.c,v 1.1.1.1 1994/05/27 10:33:22 rgrimes Exp $"; #endif /* not lint */ #include <sys/types.h> #include <sys/time.h> #include <sys/timeb.h> +int ftime(tbp) struct timeb *tbp; { diff --git a/lib/libcompat/4.3/cfree.c b/lib/libcompat/4.3/cfree.c index 8bade2ef8538d..7f029ff4a6798 100644 --- a/lib/libcompat/4.3/cfree.c +++ b/lib/libcompat/4.3/cfree.c @@ -35,6 +35,8 @@ static char sccsid[] = "@(#)cfree.c 8.1 (Berkeley) 6/4/93"; #endif /* LIBC_SCCS and not lint */ +#include <stdlib.h> + void cfree(p) void *p; diff --git a/lib/libcompat/4.3/insque.c b/lib/libcompat/4.3/insque.c index 55818fdf232c4..3035976074d1f 100644 --- a/lib/libcompat/4.3/insque.c +++ b/lib/libcompat/4.3/insque.c @@ -46,6 +46,7 @@ struct vaxque { /* queue format expected by VAX queue instructions */ struct vaxque *vq_prev; }; +void insque(e, prev) register struct vaxque *e, *prev; { diff --git a/lib/libcompat/4.3/lsearch.c b/lib/libcompat/4.3/lsearch.c index baf90ed0365bf..be650b4776caf 100644 --- a/lib/libcompat/4.3/lsearch.c +++ b/lib/libcompat/4.3/lsearch.c @@ -40,6 +40,7 @@ static char sccsid[] = "@(#)lsearch.c 8.1 (Berkeley) 6/4/93"; #include <sys/types.h> #include <unistd.h> +#include <string.h> static char *linear_base(); diff --git a/lib/libcompat/4.3/remque.c b/lib/libcompat/4.3/remque.c index 39ebfe0b5d022..e0f9aa3bec523 100644 --- a/lib/libcompat/4.3/remque.c +++ b/lib/libcompat/4.3/remque.c @@ -46,6 +46,7 @@ struct vaxque { /* queue format expected by VAX queue instructions */ struct vaxque *vq_prev; }; +void remque(e) register struct vaxque *e; { diff --git a/lib/libcompat/4.3/rexec.c b/lib/libcompat/4.3/rexec.c index 5b1afc8d72397..beb210832993f 100644 --- a/lib/libcompat/4.3/rexec.c +++ b/lib/libcompat/4.3/rexec.c @@ -291,6 +291,7 @@ bad: return (-1); } +int rexec(ahost, rport, name, pass, cmd, fd2p) char **ahost; int rport; |
