Changeset de1d716 in rtems


Ignore:
Timestamp:
04/07/97 21:27:59 (27 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
318976f
Parents:
2938c1a3
Message:

commented out sccs_id to eliminate warnings

Location:
c/src/lib/libbsp
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/mips/p4000/console/console.c

    r2938c1a3 rde1d716  
    3131
    3232
    33 #ifndef lint
    34 static char _sccsid[] = "@(#)console.c 08/20/96     1.6\n";
    35 #endif
     33/*
     34 *  Rather than deleting this, it is commented out to (hopefully) help
     35 *  the submitter send updates.
     36 *
     37 *  static char _sccsid[] = "@(#)console.c 08/20/96     1.6\n";
     38 */
     39
    3640
    3741
     
    150154    cur_led = 0;
    151155  }
    152   else if ( isalnum( ch ) && cur_led < NUM_LEDS )
     156  else if ( isalnum( (unsigned char) ch ) && cur_led < NUM_LEDS )
    153157  {
    154158    led_chars[cur_led++] = ch;
     
    158162
    159163
     164#if 0
    160165static int console_fd = -1;
     166#endif
    161167
    162168/*
  • c/src/lib/libbsp/mips64orion/p4000/console/console.c

    r2938c1a3 rde1d716  
    3131
    3232
    33 #ifndef lint
    34 static char _sccsid[] = "@(#)console.c 08/20/96     1.6\n";
    35 #endif
     33/*
     34 *  Rather than deleting this, it is commented out to (hopefully) help
     35 *  the submitter send updates.
     36 *
     37 *  static char _sccsid[] = "@(#)console.c 08/20/96     1.6\n";
     38 */
     39
    3640
    3741
     
    150154    cur_led = 0;
    151155  }
    152   else if ( isalnum( ch ) && cur_led < NUM_LEDS )
     156  else if ( isalnum( (unsigned char) ch ) && cur_led < NUM_LEDS )
    153157  {
    154158    led_chars[cur_led++] = ch;
     
    158162
    159163
     164#if 0
    160165static int console_fd = -1;
     166#endif
    161167
    162168/*
Note: See TracChangeset for help on using the changeset viewer.