Changeset ecb6ac32 in mainline for uspace/app/sbi/src/builtin/bi_fun.c
- Timestamp:
- 2010-04-04T22:32:39Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0a72efc
- Parents:
- 73060801 (diff), 23de644 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/builtin/bi_fun.c
r73060801 recb6ac32 32 32 #include <stdlib.h> 33 33 #include <assert.h> 34 #include "../bigint.h" 34 35 #include "../builtin.h" 35 36 #include "../list.h" … … 107 108 switch (var->vc) { 108 109 case vc_int: 109 printf("%d\n", var->u.int_v->value); 110 bigint_print(&var->u.int_v->value); 111 putchar('\n'); 110 112 break; 111 113 case vc_string:
Note:
See TracChangeset
for help on using the changeset viewer.