ChangeLog, gcc-wall-cleanup:
  gcc-wall-cleanup: New file which is used to clean up unnecessary
  	crud from gcc -Wall that we're not interested in seeing

diff --git a/util/gcc-wall-cleanup b/util/gcc-wall-cleanup
new file mode 100644
index 0000000..1e556ea
--- /dev/null
+++ b/util/gcc-wall-cleanup
@@ -0,0 +1,15 @@
+#!/bin/sed -f
+#
+# This script filters out gcc-wall crud that we're not interested in seeing.
+#
+/^cc /d
+/^kcc /d
+/^gcc /d
+/does not support `long long'/d
+/does not support the `ll' length modifier/d
+/traditional C rejects string concatenation/d
+/At top level:/d
+/In file included from/d
+/In function `.*':/d
+/^[ 	]*from/d
+