1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-15 06:44:10 +02:00
Beef/BeefRT/JEMalloc/include/jemalloc/internal/public_namespace.sh

7 lines
129 B
Bash
Raw Normal View History

2022-06-02 17:55:17 -07:00
#!/bin/sh
for nm in `cat $1` ; do
n=`echo ${nm} |tr ':' ' ' |awk '{print $1}'`
echo "#define je_${n} JEMALLOC_N(${n})"
done