home *** CD-ROM | disk | FTP | other *** search
- :
- #
- # %Z% %M% %I% %D% %Q%
- #
- # Copyright (C) The Santa Cruz Operation, 1986, 1987.
- # Copyright (C) Microsoft Corporation, 1986, 1987.
- # This Module contains Proprietary Information of
- # The Santa Cruz Operation, Microsoft Corporation
- # and AT&T, and should be treated as Confidential.
- #
- # routines: finds driver entry points in a driver object module
-
- case $# in
- 0) echo "syntax: routines object_module1 object_module2 ..."
- exit 1
- ;;
- esac
- cat $* | od -c | \
- awk '{ for ( i=2 ; i <= NF ; i++) if ( length($i) == 1 ) { printf("%s",$i) ; x = 1 } else if ( x == 1 ) { printf("\n"); x = 0 }} ' | \
- egrep 'open$
- close$
- read$
- write$
- ioctl$
- strategy$
- tab$
- _tty$
- halt$
- poll$
- stream$
- init$
- ^spl
- intr$' | sort | uniq | sed 's/^_//p'
-