diff options
author | Steve Price <steve@FreeBSD.org> | 1999-09-20 02:22:39 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-09-20 02:22:39 +0000 |
commit | 519f9f2da83473bcc33c368fd9db1f886ecd7991 (patch) | |
tree | 2e8e8ab95009d9a2a00c469ad989219bb4bbfdfb /net/rmsg/files/patch-ae | |
parent | Use time_t instead of long when call time functions. Also add '-lio' (diff) |
time(3) returns a time_t and not a long.
Notes
Notes:
svn path=/head/; revision=21808
Diffstat (limited to '')
-rw-r--r-- | net/rmsg/files/patch-ae | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/rmsg/files/patch-ae b/net/rmsg/files/patch-ae new file mode 100644 index 000000000000..e858dbafe6f4 --- /dev/null +++ b/net/rmsg/files/patch-ae @@ -0,0 +1,11 @@ +--- misc.c.orig Sun Sep 19 16:48:00 1999 ++++ misc.c Sun Sep 19 16:48:12 1999 +@@ -24,7 +24,7 @@ + #include "rmsgprot.h" + + char *append(), *ctime(), *malloc(), *strcpy(); +-long time(); ++time_t time(); + + char *basename(x) + char *x; |