Fixed warning by psp-build-exports's exports.c

This commit is contained in:
Arthur Blot
2012-02-29 17:52:55 +01:00
parent 758a262dd9
commit f5552d516b

View File

@@ -335,7 +335,7 @@ void build_exports_output_extern(struct psp_export *pHead)
pExp = pHead;
while(pExp != NULL)
{
fprintf(stdout, "extern void %s;\n", pExp->name);
fprintf(stdout, "extern int %s;\n", pExp->name);
pExp = pExp->pNext;
}
}