mirror of
https://github.com/notwa/rc
synced 2024-11-05 04:19:03 -08:00
7 lines
157 B
Text
7 lines
157 B
Text
|
#!/usr/bin/env bash
|
||
|
if [ -n "${ZSH_VERSION:-}" ]; then
|
||
|
$CC -dM -E - $=CFLAGS $=LDFLAGS < /dev/null
|
||
|
else
|
||
|
$CC -dM -E - $CFLAGS $LDFLAGS < /dev/null
|
||
|
fi
|