Merge pull request #7 from artart78/master

Fixed a warning happening when compiling a exports.c file generated by psp-build-exports
This commit is contained in:
artart78
2012-02-29 08:55:46 -08:00

View File

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