#!/bin/sh

# restores include/sys/ directory from scratch. Relies on
appropriate files being present in include directory.

for file in \
dir.h dirent.h errno.h file.h ioctl.h param.h resource.h stat.h wait.h \
signal.h statfs.h time.h termios.h times.h timeb.h types.h utsname.h

do
ln -s ../$file $file
done

ln -s ../statfs.h mount.h
ln -s ../statfs.h vfs.h

