home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / perl / Perl / h2pl / getioctlsizes < prev    next >
Encoding:
Text File  |  1994-10-18  |  264 b   |  14 lines

  1. #!/usr/bin/perl
  2.  
  3. open (IOCTLS,'/usr/include/sys/ioctl.h') || die "ioctl open failed";
  4.  
  5. while (<IOCTLS>) {
  6.     if (/^\s*#\s*define\s+\w+\s+_IO(R|W|WR)\('?\w+'?,\s*\w+,\s*([^)]+)/) {
  7.     $need{$2}++;
  8.     } 
  9. }
  10.  
  11. foreach $key ( sort keys %need ) {
  12.     print $key,"\n";
  13.