diff options
author | Marcus Brinkmann <marcus@gnu.org> | 2002-05-13 17:34:23 +0000 |
---|---|---|
committer | Marcus Brinkmann <marcus@gnu.org> | 2002-05-13 17:34:23 +0000 |
commit | 105f667e7a15b63ea62842f3a0b540c0f71f02a6 (patch) | |
tree | 8fc086e964471571e59f251bd43b61619024c8fd | |
parent | aaba3eb39cc37d61ed3dac9f1c865b4ed2bf9997 (diff) |
2002-05-13 Marcus Brinkmann <marcus@gnu.org>
* devprobe.c: Include <version.h>.
(argp_program_version): New variable.
* storecat.c: Include <version.h>.
(argp_program_version): New variable.
* storeread.c: Include <version.h>.
(argp_program_version): New variable.
* gcore.c: Include <version.h>.
(argp_program_version): New variable.
-rw-r--r-- | utils/ChangeLog | 11 | ||||
-rw-r--r-- | utils/devprobe.c | 5 | ||||
-rw-r--r-- | utils/gcore.c | 5 | ||||
-rw-r--r-- | utils/storecat.c | 5 | ||||
-rw-r--r-- | utils/storeread.c | 5 |
5 files changed, 27 insertions, 4 deletions
diff --git a/utils/ChangeLog b/utils/ChangeLog index 9a891f31..e80fd383 100644 --- a/utils/ChangeLog +++ b/utils/ChangeLog @@ -1,3 +1,14 @@ +2002-05-13 Marcus Brinkmann <marcus@gnu.org> + + * devprobe.c: Include <version.h>. + (argp_program_version): New variable. + * storecat.c: Include <version.h>. + (argp_program_version): New variable. + * storeread.c: Include <version.h>. + (argp_program_version): New variable. + * gcore.c: Include <version.h>. + (argp_program_version): New variable. + 2002-05-12 Roland McGrath <roland@frob.com> * fakeroot.sh: Inside the chroot'd fakeauth environment, diff --git a/utils/devprobe.c b/utils/devprobe.c index 4b97a6a4..b5ebafe4 100644 --- a/utils/devprobe.c +++ b/utils/devprobe.c @@ -1,6 +1,6 @@ /* Check the existence of mach devices - Copyright (C) 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 2002 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.ai.mit.edu> @@ -24,6 +24,9 @@ #include <hurd.h> #include <mach.h> #include <device/device.h> +#include <version.h> + +const char *argp_program_version = STANDARD_HURD_VERSION (devprobe); static const struct argp_option options[] = { {"silent", 's', 0, 0, "Don't print devices found"}, diff --git a/utils/gcore.c b/utils/gcore.c index be9a4f2f..3d72492c 100644 --- a/utils/gcore.c +++ b/utils/gcore.c @@ -1,5 +1,5 @@ /* `gcore' program for GNU Hurd: write a core dump from a running process. - Copyright (C) 1992,2001 Free Software Foundation, Inc. + Copyright (C) 1992,2001,2002 Free Software Foundation, Inc. Written by Roland McGrath. This file is part of the GNU Hurd. @@ -26,6 +26,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <fcntl.h> #include <argp.h> #include <error.h> +#include <version.h> + +const char *argp_program_version = STANDARD_HURD_VERSION (gcore); static const struct argp argp = { diff --git a/utils/storecat.c b/utils/storecat.c index 78280a21..7f9de491 100644 --- a/utils/storecat.c +++ b/utils/storecat.c @@ -1,6 +1,6 @@ /* Write a store to stdout - Copyright (C) 1996, 1997, 2001 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 2001, 2002 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.org> This file is part of the GNU Hurd. @@ -24,6 +24,9 @@ #include <error.h> #include <hurd/store.h> +#include <version.h> + +const char *argp_program_version = STANDARD_HURD_VERSION (storecat); int main (int argc, char **argv) diff --git a/utils/storeread.c b/utils/storeread.c index 5700971e..e672d984 100644 --- a/utils/storeread.c +++ b/utils/storeread.c @@ -1,6 +1,6 @@ /* Write portions of a store to stdout - Copyright (C) 1996,97,99,2001 Free Software Foundation, Inc. + Copyright (C) 1996,97,99,2001,02 Free Software Foundation, Inc. Written by Miles Bader <miles@gnu.org> This file is part of the GNU Hurd. @@ -26,6 +26,9 @@ #include <sys/mman.h> #include <hurd/store.h> +#include <version.h> + +const char *argp_program_version = STANDARD_HURD_VERSION (storeread); struct argp_option options[] = { {"file", 'f', 0, 0, "Use file IO instead of the raw device"}, |