commit | 7179fd8738ee036666ccb17f5e65dab7652bdb51 | [log] [tgz] |
---|---|---|
author | Mike Frysinger <vapier@gentoo.org> | Fri Dec 09 18:33:11 2016 -0500 |
committer | Stephen Smalley <sds@tycho.nsa.gov> | Mon Dec 12 14:44:26 2016 -0500 |
tree | 2dd4fcb72da17bf375768cbf5158b376f2dfe96f | |
parent | fc3d8ceafcd6078d4035e4bd827337d5e3cb4362 [diff] |
man: standardize spacing with pointers in prototypes The majority of prototypes don't put a space between the "*" and the parameter name. i.e. this style is incorrect: char * foo; Instead, we want: char *foo; Fix a bunch of references that use this uncommon style. Signed-off-by: Mike Frysinger <vapier@gentoo.org>