blob: e44f2386caa25bf2e44572902abe4d2ee89a8b3b (
plain)
1
2
3
4
5
6
7
8
9
|
#! /bin/sh
case `uname -sr` in
'SunOS 4.'*) ;;
*) echo Probably not on a SunOS 4 system 1>&2
exit 1;;
esac
set -v
h2py /usr/include/sys/wait.h
h2py -i '(u_long)' /usr/include/netinet/in.h
|