From 0786e1fc60986f70cead36ae97abfe12d6daab94 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Mon, 27 Aug 2018 11:31:33 -0700 Subject: [PATCH] CARD: Add missing function return type declaration for sim_card_test --- sim_card.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim_card.h b/sim_card.h index 7bafdc28..9a550453 100644 --- a/sim_card.h +++ b/sim_card.h @@ -131,7 +131,7 @@ extern CONST char sim_ascii_to_six[128]; /* Map 7 bit ASCII to BCD */ extern CONST uint8 sim_parity_table[64]; /* 64 entry odd parity table */ /* Unit test routine */ -extern sim_card_test (DEVICE *dptr); +extern t_stat sim_card_test (DEVICE *dptr); #ifdef __cplusplus }