Changeset d0febca in mainline for uspace/app/sbi/src/stree.c


Ignore:
Timestamp:
2010-03-13T12:04:37Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7715994
Parents:
94d484a
Message:

Update SBI to rev. 100.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sbi/src/stree.c

    r94d484a rd0febca  
    136136}
    137137
    138 stree_fun_arg_t *stree_fun_arg_new(void)
    139 {
    140         stree_fun_arg_t *fun_arg;
    141 
    142         fun_arg = calloc(1, sizeof(stree_fun_arg_t));
    143         if (fun_arg == NULL) {
    144                 printf("Memory allocation failed.\n");
    145                 exit(1);
    146         }
    147 
    148         return fun_arg;
     138stree_proc_arg_t *stree_proc_arg_new(void)
     139{
     140        stree_proc_arg_t *proc_arg;
     141
     142        proc_arg = calloc(1, sizeof(stree_proc_arg_t));
     143        if (proc_arg == NULL) {
     144                printf("Memory allocation failed.\n");
     145                exit(1);
     146        }
     147
     148        return proc_arg;
    149149}
    150150
     
    561561
    562562/** Determine if argument @a arg has attribute of class @a aac. */
    563 bool_t stree_arg_has_attr(stree_fun_arg_t *arg, arg_attr_class_t aac)
     563bool_t stree_arg_has_attr(stree_proc_arg_t *arg, arg_attr_class_t aac)
    564564{
    565565        list_node_t *node;
Note: See TracChangeset for help on using the changeset viewer.