xref: /netbsd-src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/public_unnamespace.sh (revision 4439cfd0acf9c7dc90625e5cd83b2317a9ab8967)
1#!/bin/sh
2
3for nm in `cat $1` ; do
4  n=`echo ${nm} |tr ':' ' ' |awk '{print $1}'`
5  echo "#undef je_${n}"
6done
7