Changeset 55cff86 in mainline for libc/generic/io/io.c


Ignore:
Timestamp:
2006-03-15T12:36:49Z (19 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2345061
Parents:
d73942c
Message:

Fixed problem with stackarg/stdarg for 64-bit platforms.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libc/generic/io/io.c

    rd73942c r55cff86  
    6868        size_t count;
    6969       
     70        if (str == NULL) {
     71                return putnchars("(NULL)",6 );
     72        }
     73
    7074        for (count = 0; str[count] != 0; count++);
    7175        if (write(1, (void * ) str, count) == count) {
Note: See TracChangeset for help on using the changeset viewer.