fix type mismatches in native-lib/scalar_arguments test
This commit is contained in:
parent
33f1700cfc
commit
ab2443cbad
1 changed files with 2 additions and 2 deletions
|
|
@ -22,11 +22,11 @@ EXPORT uint32_t get_unsigned_int(void) {
|
|||
return -10;
|
||||
}
|
||||
|
||||
EXPORT short add_int16(int16_t x) {
|
||||
EXPORT int16_t add_int16(int16_t x) {
|
||||
return x + 3;
|
||||
}
|
||||
|
||||
EXPORT long add_short_to_long(int16_t x, int64_t y) {
|
||||
EXPORT int64_t add_short_to_long(int16_t x, int64_t y) {
|
||||
return x + y;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue