| commit | b79926ed0fca50a4a61e1446e8d4c9be81bda7d4 | [log] [download] |
|---|---|---|
| author | Kir Kolyshkin <kir@openvz.org> | Tue Apr 24 08:50:33 2012 +0400 |
| committer | Kir Kolyshkin <kir@openvz.org> | Tue Apr 24 08:52:02 2012 +0400 |
| tree | ed0916920a156cee4ba6afc08c8bc77e86d93b1d | |
| parent | a8103c1688ae01ed9af049609a11400a1543a5cf [diff] |
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>