Changeset 7f1c620 in mainline for generic/src/sysinfo/sysinfo.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/sysinfo/sysinfo.c

    r991779c5 r7f1c620  
    168168}
    169169
    170 void sysinfo_set_item_val(const char *name, sysinfo_item_t **root, __native val)
     170void sysinfo_set_item_val(const char *name, sysinfo_item_t **root, unative_t val)
    171171{
    172172        if (root == NULL)
     
    223223        while (root != NULL) {
    224224                int i;
    225                 __native val = 0;
     225                unative_t val = 0;
    226226                char *vtype = NULL;
    227227               
     
    279279}
    280280
    281 __native sys_sysinfo_valid(__native ptr, __native len)
     281unative_t sys_sysinfo_valid(unative_t ptr, unative_t len)
    282282{
    283283        char *str;
     
    293293}
    294294
    295 __native sys_sysinfo_value(__native ptr, __native len)
     295unative_t sys_sysinfo_value(unative_t ptr, unative_t len)
    296296{
    297297        char *str;
Note: See TracChangeset for help on using the changeset viewer.