Changeset 7f1c620 in mainline for generic/src/console/console.c


Ignore:
Timestamp:
2006-07-04T17:17:56Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0ffa3ef5
Parents:
991779c5
Message:

Replace old u?? types with respective C99 variants (e.g. uint32_t, int64_t, uintptr_t etc.).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/src/console/console.c

    r991779c5 r7f1c620  
    7777 * @return Character read.
    7878 */
    79 __u8 _getc(chardev_t *chardev)
     79uint8_t _getc(chardev_t *chardev)
    8080{
    81         __u8 ch;
     81        uint8_t ch;
    8282        ipl_t ipl;
    8383
     
    151151
    152152/** Get character from device & echo it to screen */
    153 __u8 getc(chardev_t *chardev)
     153uint8_t getc(chardev_t *chardev)
    154154{
    155         __u8 ch;
     155        uint8_t ch;
    156156
    157157        ch = _getc(chardev);
Note: See TracChangeset for help on using the changeset viewer.