diff options
author | Miles Bader <miles@gnu.org> | 1996-04-02 23:40:16 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-04-02 23:40:16 +0000 |
commit | 893a0c303afb9f897b9b0fa24b6f697af8ad72c0 (patch) | |
tree | 625c9d495b1c38947068c10e85c5f39e39510403 /libstore/storeread.c | |
parent | e1cfadf616d493191fc0a22cf56ec2cc472eefbf (diff) | |
download | hurd-893a0c303afb9f897b9b0fa24b6f697af8ad72c0.tar.gz hurd-893a0c303afb9f897b9b0fa24b6f697af8ad72c0.tar.bz2 hurd-893a0c303afb9f897b9b0fa24b6f697af8ad72c0.zip |
entered into RCS
Diffstat (limited to 'libstore/storeread.c')
-rw-r--r-- | libstore/storeread.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libstore/storeread.c b/libstore/storeread.c index 2558a86b..6b38676a 100644 --- a/libstore/storeread.c +++ b/libstore/storeread.c @@ -1,3 +1,5 @@ +/* Test program for libstore -- outputs a portion of a store */ + #include <argp.h> #include <error.h> #include <unistd.h> @@ -96,6 +98,6 @@ main (int argc, char **argv) return 0; } struct argp argp = {options, parse_opt, arg_doc, doc}; - argp_parse (&argp, argc, argv, 0, 0); + argp_parse (&argp, argc, argv, 0, 0, 0); exit (0); } |