Ignore:
Timestamp:
09/23/06 18:24:00 (18 years ago)
Author:
zorg
Message:

Various fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • mppenc/branches/zorg/src/mppenc.c

    r46 r49  
    128128
    129129    fflush (stdout);
    130     while ( (c = _getch() ) <= ' ' )
     130    while ( (c = getch() ) <= ' ' )
    131131        ;
    132132    return c;
     
    19291929    if ( argc < 2  ||  0==strcmp (argv[1],"-h")  ||  0==strcmp (argv[1],"-?")  ||  0==strcmp (argv[1],"--help") ) {
    19301930        SetQualityParams (5.0);
    1931         _dup2 ( 1, 2 );
     1931        dup2 ( 1, 2 );
    19321932        shorthelp ();
    19331933        return 1;
     
    19361936    if ( 0==strcmp (argv[1],"--longhelp")  ||  0==strcmp (argv[1],"-??") ) {
    19371937        SetQualityParams (5.0);
    1938         _dup2 ( 1, 2 );
     1938        dup2 ( 1, 2 );
    19391939        longhelp ();
    19401940        return 1;
Note: See TracChangeset for help on using the changeset viewer.