Browse Source

bb_stdc_Startup() should return void.

woollybah 8 years ago
parent
commit
547e0c014b
1 changed files with 2 additions and 1 deletions
  1. 2 1
      stdc.mod/stdc.c

+ 2 - 1
stdc.mod/stdc.c

@@ -786,7 +786,7 @@ static void CleanupWSA(){
 
 
 #endif
 #endif
 
 
-int bb_stdc_Startup(){
+void bb_stdc_Startup(){
 
 
 #if _WIN32
 #if _WIN32
 
 
@@ -800,4 +800,5 @@ int bb_stdc_Startup(){
 	stdin_=stdin;
 	stdin_=stdin;
 	stdout_=stdout;
 	stdout_=stdout;
 	stderr_=stderr;
 	stderr_=stderr;
+	
 }
 }