Your IP : 172.28.240.42


Current Path : /usr/src/linux-headers-3.13.0-32/arch/x86/vdso/
Upload File :
Current File : //usr/src/linux-headers-3.13.0-32/arch/x86/vdso/checkundef.sh

#!/bin/sh
nm="$1"
file="$2"
$nm "$file" | grep '^ *U' > /dev/null 2>&1
if [ $? -eq 1 ]; then
    exit 0
else
    echo "$file: undefined symbols found" >&2
    exit 1
fi