summaryrefslogtreecommitdiff
path: root/ufs-utils/mkfs.c
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1996-07-07 01:14:44 +0000
committerMiles Bader <miles@gnu.org>1996-07-07 01:14:44 +0000
commite32e0d45c16d700e90db036ee6fd534e8eb5bba6 (patch)
tree540d453c2b9ac50545b2f5bbe782247203106607 /ufs-utils/mkfs.c
parent107616878a2dc1b21a164aeb9718790d34dc6246 (diff)
(argp_program_version): New variable.
<hurd.h>: New include.
Diffstat (limited to 'ufs-utils/mkfs.c')
-rw-r--r--ufs-utils/mkfs.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/ufs-utils/mkfs.c b/ufs-utils/mkfs.c
index 2fb1248c..37c34ac3 100644
--- a/ufs-utils/mkfs.c
+++ b/ufs-utils/mkfs.c
@@ -33,7 +33,7 @@
#ifndef lint
/*static char sccsid[] = "from: @(#)mkfs.c 8.3 (Berkeley) 2/3/94";*/
-static char *rcsid = "$Id: mkfs.c,v 1.11 1996/05/11 05:21:06 miles Exp $";
+static char *rcsid = "$Id: mkfs.c,v 1.12 1996/07/07 01:14:44 miles Exp $";
#endif /* not lint */
#include <unistd.h>
@@ -58,6 +58,8 @@ static char *rcsid = "$Id: mkfs.c,v 1.11 1996/05/11 05:21:06 miles Exp $";
#include <device/device_types.h>
#include <device/disk_status.h>
+#include <hurd.h>
+
/* Begin misc additions for GNU Hurd */
/* For GNU Hurd: the ufs DIRSIZ macro is different than the BSD
@@ -161,6 +163,8 @@ struct dinode zino[MAXBSIZE / sizeof(struct dinode)];
int fsi, fso;
daddr_t alloc();
+char *argp_program_version = "mkfs.ufs 1.0 (GNU " HURD_RELEASE ")";
+
#define _STRINGIFY(arg) #arg
#define STRINGIFY(arg) _STRINGIFY (arg)