Help for this page

Select Code to Download


  1. or download this
        require 'sys/ioctl.ph';
        die "no TIOCSTI" unless defined &TIOCSTI;
    
  2. or download this
        Since sys/ioctl.h translation is so dodgy, you'll
        probably have to run this C program to get your
    ...
            % cat > tio.c <<EOF && cc tio.c && a.out
            main() { printf("%#08x\n", TIOCSTI); }
            EOF