summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1994-05-12 05:11:51 +0000
committerRoland McGrath <roland@gnu.org>1994-05-12 05:11:51 +0000
commit9ca96ae722b04565771aef01f0f5d9c0f50e9c49 (patch)
tree8032e19f3b1312d2f367b7d8a48b9a890cbb9fda /hurd
parent384ef69811cfc23ae8d5a7b42b37131576060e3c (diff)
entered into RCS
Diffstat (limited to 'hurd')
-rw-r--r--hurd/version.h26
1 files changed, 16 insertions, 10 deletions
diff --git a/hurd/version.h b/hurd/version.h
index 67affdb7..3611d877 100644
--- a/hurd/version.h
+++ b/hurd/version.h
@@ -14,15 +14,17 @@
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
-
+
+#ifndef _HURD_VERSION_H
+#define _HURD_VERSION_H
/* Each version of the Hurd defines a set of versions for the servers
that make it up. Each server is identified by one of these
structures. */
struct hurd_server_version
{
- char *name; /* The name of the server */
- char *version; /* The servers's version */
+ char *name; /* The name of the server. */
+ char *version; /* The server's version. */
};
/* A version of the Hurd is therefore defined by its version number
@@ -36,9 +38,12 @@ struct hurd_version
char *hurdrelease;
char *hurdversion;
int nservers;
- struct hurd_vers[0];
+ struct hurd_server_version vers[0];
};
+#endif /* hurd/version.h */
+
+
/* And these are the standard lists referred to above. */
#ifdef HURD_VERSION_DEFINE
@@ -49,17 +54,18 @@ struct hurd_version hurd_versions[] =
"0.0 pre-alpha",
"0.0 pre-alpha",
5,
- {"auth", "0.0 pre-alpha"},
- {"proc", "0.0 pre-alpha"},
- {"ufs", "0.0 pre-alpha"},
- {"init", "0.0 pre-alpha"},
- {"exec", "0.0 pre-alpha"},
+ {
+ {"auth", "0.0 pre-alpha"},
+ {"proc", "0.0 pre-alpha"},
+ {"ufs", "0.0 pre-alpha"},
+ {"init", "0.0 pre-alpha"},
+ {"exec", "0.0 pre-alpha"},
+ }
}
};
int nhurd_versions = sizeof hurd_versions / sizeof *hurd_versions;
#endif
-