7 lines
169 B
Bash
Executable File
7 lines
169 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
diff -u "$2" <(nm "$1" | grep " T " | cut -f3 -d " " | sort)
|
|
nm "$1" | grep " U " | (! grep -Pv 'abort|free|malloc|mem[a-z]*|__ashlti3')
|