diff options
author | Bruce Momjian | 2000-06-08 22:38:00 +0000 |
---|---|---|
committer | Bruce Momjian | 2000-06-08 22:38:00 +0000 |
commit | 20ad43b576d9360b0e9ce9bd868c989443cf9d36 (patch) | |
tree | 6cdf8d6fb7e1e229158000234ff32a426447a53f /src/tools | |
parent | 5690933d6c14a706b52edf76c71cbf5660b110e1 (diff) |
Mark functions as static and ifdef NOT_USED as appropriate.
Diffstat (limited to 'src/tools')
-rwxr-xr-x | src/tools/find_static | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tools/find_static b/src/tools/find_static index 5951484d71f..f2b10e7a863 100755 --- a/src/tools/find_static +++ b/src/tools/find_static @@ -16,7 +16,7 @@ find . -name '[a-z]*.o' -type f -print | while read FILE do nm $FILE | cut -c10-100 |awk '{printf "%s\t%s\t%s\n", "'"$FILE"'",$1,$2}' done >/tmp/$$ -destroydb debug +dropdb debug createdb debug echo " create table debug (file text, scope char, func text); @@ -43,6 +43,7 @@ echo " select * from debug2 - where scope = 'T'; + where scope = 'T' + order by file, func; " |psql debug |