diff --git a/ChangeLog b/ChangeLog index 7d8c0ea14a..3282381767 100644 --- a/ChangeLog +++ b/ChangeLog @@ -21,6 +21,9 @@ Move the instantiation of File -> Properties into main-window.scm (out of business-gnome.scm) for future cases where we might decide to ship the business modules separately. + + * src/import-export/ofx/test/test-link.c: fix the test program + to make sure it links on many weird platforms. 2003-05-22 Derek Atkins diff --git a/src/import-export/ofx/test/test-link.c b/src/import-export/ofx/test/test-link.c index 4f8ec032f1..72e059c0ff 100644 --- a/src/import-export/ofx/test/test-link.c +++ b/src/import-export/ofx/test/test-link.c @@ -1,6 +1,27 @@ +#include int main(int argc, char ** argv) { return 0; } +int ofx_proc_status_cb(struct OfxStatusData data) +{ + return 0; +} +int ofx_proc_security_cb(struct OfxSecurityData data) +{ + return 0; +} +int ofx_proc_transaction_cb(struct OfxTransactionData data) +{ + return 0; +} +int ofx_proc_statement_cb(struct OfxStatementData data) +{ + return 0; +} +int ofx_proc_account_cb(struct OfxAccountData data) +{ + return 0; +}