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 /utils/gcore.c | |
parent | aaba3eb39cc37d61ed3dac9f1c865b4ed2bf9997 (diff) | |
download | hurd-105f667e7a15b63ea62842f3a0b540c0f71f02a6.tar.gz hurd-105f667e7a15b63ea62842f3a0b540c0f71f02a6.tar.bz2 hurd-105f667e7a15b63ea62842f3a0b540c0f71f02a6.zip |
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.
Diffstat (limited to 'utils/gcore.c')
-rw-r--r-- | utils/gcore.c | 5 |
1 files changed, 4 insertions, 1 deletions
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 = { |