procps/proc/wchan.h
Jim Warner fca8bcbd40 library: standardize 'pointer-to-thing' whitespace use
When declaring a pointer there's usually a space after
the thing-pointed-to and no space between the asterisk
and the pointer-thingy itself. So this commit enforces
such conventions where needed on old library elements.

Signed-off-by: Jim Warner <james.warner@comcast.net>
2021-07-27 21:17:18 +10:00

7 lines
108 B
C

#ifndef PROCPS_PROC_WCHAN_H
#define PROCPS_PROC_WCHAN_H
extern const char *lookup_wchan (int pid);
#endif