diff options
author | Roland McGrath <roland@gnu.org> | 2001-02-26 04:16:38 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-02-26 04:16:38 +0000 |
commit | f7a9538252e1d65e528e9e34c1e1a99b681116ab (patch) | |
tree | 782118b1d1bef2809eade33c72f4ec4c434f8ee6 /utils/storecat.c | |
parent | 84fa419b6902ff32c8cfc9bc10af857856d1a519 (diff) |
2001-02-25 Roland McGrath <roland@frob.com>
* storecat.c: Include <stdlib.h> for decls.
* w.c: Include <time.h> for decls.
Diffstat (limited to 'utils/storecat.c')
-rw-r--r-- | utils/storecat.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/utils/storecat.c b/utils/storecat.c index f01c12c1..78280a21 100644 --- a/utils/storecat.c +++ b/utils/storecat.c @@ -1,7 +1,7 @@ /* Write a store to stdout - Copyright (C) 1996, 1997 Free Software Foundation, Inc. - Written by Miles Bader <miles@gnu.ai.mit.edu> + Copyright (C) 1996, 1997, 2001 Free Software Foundation, Inc. + Written by Miles Bader <miles@gnu.org> This file is part of the GNU Hurd. The GNU Hurd is free software; you can redistribute it and/or @@ -19,6 +19,7 @@ 59 Temple Place - Suite 330, Boston, MA 02111, USA. */ #include <unistd.h> +#include <stdlib.h> #include <argp.h> #include <error.h> @@ -54,7 +55,7 @@ main (int argc, char **argv) char buf[4096]; void *data = buf; size_t data_len = sizeof (buf); - + err = store_read (s, addr, read, &data, &data_len); if (err) error (5, err, "%s", name); |