summaryrefslogtreecommitdiff
path: root/deps/jemalloc/include/jemalloc/internal/public_namespace.sh
blob: 362109f712763d012128526af8e74f0fc12f1537 (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