diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-11-09 04:10:58 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-11-09 04:10:58 +0000 |
commit | 582504eb35abb80189927ae1b6fca64f46dc6e74 (patch) | |
tree | db93939903511444317cb8be6815926b6b7bc4aa /usr.bin/less/less.h | |
parent | aee7c018cb8019597549381a4900dac922e909a0 (diff) |
cleanup struct definitions
Diffstat (limited to 'usr.bin/less/less.h')
-rw-r--r-- | usr.bin/less/less.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/less/less.h b/usr.bin/less/less.h index 949ba138fcf..c58e591e183 100644 --- a/usr.bin/less/less.h +++ b/usr.bin/less/less.h @@ -109,8 +109,7 @@ struct scrpos { int ln; }; -typedef union parg -{ +typedef union parg { char *p_string; int p_int; LINENUM p_linenum; @@ -118,8 +117,7 @@ typedef union parg #define NULL_PARG ((PARG *)NULL) -struct textlist -{ +struct textlist { char *string; char *endstring; }; |