summaryrefslogtreecommitdiffstats
path: root/deps/jemalloc/include/jemalloc/internal/public_namespace.sh
blob: 4d415ba01fa85655977ddbb433c50256d35ed8d3 (plain)
1
2
3
4
5
6
#!/bin/sh

for nm in `cat $1` ; do
  n=`echo ${nm} |tr ':' ' ' |awk '{print $1}'`
  echo "#define je_${n} JEMALLOC_N(${n})"
done