include/*.h: remove non-existen function prototypes

Those are probably leftovers from the removed
or changed code. Found by the following script:

for INC in include/*.h; do
	for f in $(grep -E '^(int|void|char) ' $INC | awk {'print $2;'}| \
			sed -e 's/(.*//' -e 's/^*//'); do
		if ! git --no-pager grep -wq "$f" -- '*.c'; then
			echo "$INC $f"
		fi
	done
done

Signed-off-by: Kir Kolyshkin <kir@openvz.org>
2 files changed