library: eliminate inappropriate '__BEGIN_DECLS' macro

This patch simply eliminates that glibc specific macro
from all header files which contain no public callable
functions. After all, if user code can't link to them,
then protection from C++ name mangling is unnecessary.

[ we also remove any related '#include <features.h>' ]

Signed-off-by: Jim Warner <james.warner@comcast.net>
This commit is contained in:
Jim Warner
2018-04-06 00:00:00 -05:00
committed by Craig Small
parent c683d9fe48
commit bae272fe22
7 changed files with 0 additions and 32 deletions

View File

@ -1,12 +1,6 @@
#ifndef PROCPS_PROC_WCHAN_H
#define PROCPS_PROC_WCHAN_H
#include <features.h>
__BEGIN_DECLS
extern const char * lookup_wchan (int pid);
__END_DECLS
#endif