diff options
author | Miles Bader <miles@gnu.org> | 1996-09-14 17:31:40 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-09-14 17:31:40 +0000 |
commit | 3395c2ad30f10a9c8717376c886fa4d86b3618ed (patch) | |
tree | 46fece37f18024d5a6f5d3822b76ac468247b30f /storeio/storeio.c | |
parent | d141ba17a80b5ec235d1070a032d10df09a7c7b9 (diff) |
(argp_program_version): New variable.
<version.h>: New include.
Diffstat (limited to 'storeio/storeio.c')
-rw-r--r-- | storeio/storeio.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/storeio/storeio.c b/storeio/storeio.c index 8f189bf8..e860f3b3 100644 --- a/storeio/storeio.c +++ b/storeio/storeio.c @@ -18,18 +18,17 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include <hurd.h> -#include <hurd/ports.h> -#include <hurd/pager.h> -#include <hurd/trivfs.h> -#include <hurd/fsys.h> - #include <stdio.h> #include <error.h> #include <assert.h> #include <fcntl.h> #include <argp.h> +#include <hurd.h> +#include <hurd/ports.h> +#include <hurd/trivfs.h> +#include <version.h> + #include "open.h" #include "dev.h" @@ -58,6 +57,8 @@ static struct argp_option options[] = }; static char *args_doc = 0; static char *doc = "Translator for devices and other stores"; + +char *argp_program_version = STANDARD_HURD_VERSION (storeio); /* ---------------------------------------------------------------- */ |