* src/import-export/ofx/test/test-link.c: fix the test program

to make sure it links on many weird platforms.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8376 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2003-05-24 03:53:34 +00:00
parent 020805377d
commit 84874fe11a
2 changed files with 24 additions and 0 deletions

View File

@ -22,6 +22,9 @@
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 <derek@ihtfp.com>
* src/business/business-reports/owner-report.scm: Better fix for 108731

View File

@ -1,6 +1,27 @@
#include <libofx/libofx.h>
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;
}