Changeset 4b54bd9 in mainline for uspace/lib/pcut/tests/tested.c
- Timestamp:
- 2018-09-12T13:23:03Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3da0ee4
- Parents:
- 275530a4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/pcut/tests/tested.c
r275530a4 r4b54bd9 31 31 #define UNUSED(a) ((void)a) 32 32 33 long intpow(int base, int exp) 34 { 35 UNUSED(base); 36 UNUSED(exp); 33 long intpow(int base, int exp) { 34 UNUSED(base); UNUSED(exp); 37 35 return 0; 38 36 } 39 37 40 int intmin(int a, int b) 41 { 38 int intmin(int a, int b) { 42 39 UNUSED(b); 43 40 return a;
Note:
See TracChangeset
for help on using the changeset viewer.