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/4.1 | |
| parent | af7a29993083b1562f01c87bb774fbe4fc3579e7 (diff) | |
Notes
Diffstat (limited to 'lib/libcompat/4.1')
| -rw-r--r-- | lib/libcompat/4.1/ftime.3 | 2 | ||||
| -rw-r--r-- | lib/libcompat/4.1/ftime.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/lib/libcompat/4.1/ftime.3 b/lib/libcompat/4.1/ftime.3 index 61d02a6f0285..c1e9c3a0dc82 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 ccd3a64beea7..8f6efb1f96eb 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; { |
