diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-03-14 20:31:32 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-03-14 20:31:32 +0000 |
commit | 664594592b027192aadee83827fa39d430c954d0 (patch) | |
tree | 83df829c370f8eb63a310ab1cd55864e752ccd5c /sys/compat/ibcs2/ibcs2_stat.c | |
parent | 5d9413e62b10c038c2061d9b5cc7f27ea22b1653 (diff) |
remove ambiguity in version,ostype,osversion,osrelease and their constanity, they are and declarre 'em accordingly also removing private externies of those
Diffstat (limited to 'sys/compat/ibcs2/ibcs2_stat.c')
-rw-r--r-- | sys/compat/ibcs2/ibcs2_stat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/ibcs2/ibcs2_stat.c b/sys/compat/ibcs2/ibcs2_stat.c index 28bee548f1c..04534fc0eca 100644 --- a/sys/compat/ibcs2/ibcs2_stat.c +++ b/sys/compat/ibcs2/ibcs2_stat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ibcs2_stat.c,v 1.8 2002/03/14 01:26:50 millert Exp $ */ +/* $OpenBSD: ibcs2_stat.c,v 1.9 2002/03/14 20:31:31 mickey Exp $ */ /* $NetBSD: ibcs2_stat.c,v 1.5 1996/05/03 17:05:32 christos Exp $ */ /* @@ -259,7 +259,7 @@ ibcs2_sys_utssys(p, v, retval) case 0: /* uname(2) */ { struct ibcs2_utsname sut; - extern char ostype[], machine[], osrelease[]; + extern char machine[]; bzero(&sut, ibcs2_utsname_len); bcopy(ostype, sut.sysname, sizeof(sut.sysname) - 1); |