]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - tools/listpublic
Import CUPS v1.7.1
[thirdparty/cups.git] / tools / listpublic
diff --git a/tools/listpublic b/tools/listpublic
deleted file mode 100755 (executable)
index d864e7e..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-#
-# List public API symbols...
-#
-
-for function in `nm -g *.so | grep "T " | awk '{print $3}' | grep -v '^_' | sort`; do
-       found=`grep $function\( *.h | grep -v DEPRECATED`
-
-       if test "x$found" != x; then
-               echo $function
-       fi
-done