#!/bin/sh
#
# getDynamicLibSuffix - return the suffic used for dynamically linked libs
#


# The most common suffix is .so, which we return here. HP is known to be
# different, using .sl instead.

echo "so"
