#!/bin/sh
# Usage: add_sun_libc_files smx_lib_name
#
# Certain files from the Sun libaray need to be added to the
# smx libc.a

objects="frexp.o modf.o"
ar xv /usr/lib/libc.a $objects
ar cr $1 $objects
rm $objects

