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