1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Mark functions as static and ifdef NOT_USED as appropriate.

This commit is contained in:
Bruce Momjian
2000-06-08 22:38:00 +00:00
parent 5690933d6c
commit 20ad43b576
55 changed files with 188 additions and 175 deletions

View File

@@ -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