diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-06-23 22:21:50 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-06-23 22:21:50 +0000 |
commit | dfeead84e5b3e2b349a06703fdb4ba9cafb2ab94 (patch) | |
tree | f0412471d516ae339a59982ce32158d3789aed53 /usr.bin/systat/extern.h | |
parent | f117bcdcb3d1667b3f1b0eda5c6389ba8dce21da (diff) |
Cleanup by Theo and myself. CMDLINE changed to long to make
command line work on 64bit platforms. This is somewhat bogus
and is really just a temporary workaround (there may be a curses bug).
Diffstat (limited to 'usr.bin/systat/extern.h')
-rw-r--r-- | usr.bin/systat/extern.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/systat/extern.h b/usr.bin/systat/extern.h index d1ded2d14a0..446436525ef 100644 --- a/usr.bin/systat/extern.h +++ b/usr.bin/systat/extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: extern.h,v 1.3 1996/06/26 05:40:06 deraadt Exp $ */ +/* $OpenBSD: extern.h,v 1.4 1997/06/23 22:21:46 millert Exp $ */ /* $NetBSD: extern.h,v 1.3 1996/05/10 23:16:34 thorpej Exp $ */ /*- @@ -51,7 +51,7 @@ extern float *dk_mspw; extern kvm_t *kd; extern long ntext, textp; extern int *dk_select; -extern int CMDLINE; +extern long CMDLINE; extern int dk_ndrive; extern int hz, stathz; extern int naptime, col; |