Changeset ecb6ac32 in mainline for uspace/app/sbi/src/rdata_t.h
- 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/rdata_t.h
r73060801 recb6ac32 35 35 #include "intmap_t.h" 36 36 37 /** Integer variable */38 typedef struct { 39 /* 40 * Note: Sysel int type should be able to store arbitrarily large 41 * numbers. But for now we can live with limited width. 42 */ 43 int value;37 /** Integer variable. 38 * 39 * Sysel int type should be able to store arbitrarily (or at least 40 * very) large numbers. 41 */ 42 typedef struct { 43 bigint_t value; 44 44 } rdata_int_t; 45 45
Note:
See TracChangeset
for help on using the changeset viewer.