c0cc5db871
This resolves #564.
6 lines
93 B
Bash
Executable File
6 lines
93 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for symbol in `cat $1` ; do
|
|
echo "#define ${symbol} JEMALLOC_N(${symbol})"
|
|
done
|