diff options
Diffstat (limited to 'test-suite/standalone/test-ffi-lib.c')
-rw-r--r-- | test-suite/standalone/test-ffi-lib.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test-suite/standalone/test-ffi-lib.c b/test-suite/standalone/test-ffi-lib.c index 37d6e43cc..50a200886 100644 --- a/test-suite/standalone/test-ffi-lib.c +++ b/test-suite/standalone/test-ffi-lib.c @@ -87,6 +87,12 @@ scm_t_int16 test_ffi_s16_u8 (scm_t_uint8 a) return -20000 + a; } +scm_t_int16 test_ffi_s16_s8 (scm_t_int8 a); +scm_t_int16 test_ffi_s16_s8 (scm_t_int8 a) +{ + return -20000 + a; +} + scm_t_int16 test_ffi_s16_s64 (scm_t_int64 a); scm_t_int16 test_ffi_s16_s64 (scm_t_int64 a) { |