diff options
author | Juli Mallett <jmallett@FreeBSD.org> | 2002-09-17 02:52:44 +0000 |
---|---|---|
committer | Juli Mallett <jmallett@FreeBSD.org> | 2002-09-17 02:52:44 +0000 |
commit | 760bbf7d6d51dfcc17709a7cf2f548de1b59a37a (patch) | |
tree | 5c528cc245d18ca3cbd2496b4c2280b2b5f33430 /bin/ps/ps.h | |
parent | c696fb50b35e26585021e2a4dca6d4c22a50ab36 (diff) |
Conglomerate printing of ps_pgtok'd data into a PLONG type. I couldn't think
of a better name, except PINT, but I decided to go with assuming LONG to
be safe, rather than assuming INT.
Notes
Notes:
svn path=/head/; revision=103438
Diffstat (limited to 'bin/ps/ps.h')
-rw-r--r-- | bin/ps/ps.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ps/ps.h b/bin/ps/ps.h index ae5caa0bad07..63797a96710a 100644 --- a/bin/ps/ps.h +++ b/bin/ps/ps.h @@ -35,7 +35,7 @@ */ #define UNLIMITED 0 /* unlimited terminal width */ -enum type { CHAR, UCHAR, SHORT, USHORT, INT, UINT, LONG, ULONG, KPTR }; +enum type { CHAR, UCHAR, SHORT, USHORT, INT, UINT, LONG, ULONG, KPTR, PLONG }; typedef struct kinfo { struct kinfo_proc *ki_p; /* kinfo_proc structure */ |