aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/tcmalloc/patches/060-system-headers.sh
blob: 7f5b4b26deaaef87ffdbed65518935f207c255ab (plain) (blame)
1
2
3
4
5
set -eux
# DTCC-1856
find . -type f -name '*.h' | while read l; do
    sed -i '1s/^/#pragma clang system_header\n/' ${l}
done