xref: /netbsd-src/external/bsd/jemalloc/dist/include/jemalloc/internal/public_unnamespace.sh (revision a0698ed9d41653d7a2378819ad501a285ca0d401)
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