Bläddra i källkod

Change lib_exit to fpc_lib_exit in missed sources (to fix breakages after commit #42104)

git-svn-id: trunk@42109 -
pierre 6 år sedan
förälder
incheckning
669e705b54
3 ändrade filer med 3 tillägg och 3 borttagningar
  1. 1 1
      rtl/android/sysandroid.inc
  2. 1 1
      rtl/java/jsystem.inc
  3. 1 1
      rtl/wince/system.pp

+ 1 - 1
rtl/android/sysandroid.inc

@@ -101,7 +101,7 @@ begin
   FpClose(_SaveStdOut);
   FpClose(_SaveStdOut);
   FpClose(_SaveStdErr);
   FpClose(_SaveStdErr);
   // Finalize the library
   // Finalize the library
-  lib_exit;
+  fpc_lib_exit;
   // Close stdout and stderr if stdio has been closed
   // Close stdout and stderr if stdio has been closed
   if ioclosed then
   if ioclosed then
     begin
     begin

+ 1 - 1
rtl/java/jsystem.inc

@@ -1041,7 +1041,7 @@ end;
 procedure internal_do_exit; external name 'fpc_do_exit';
 procedure internal_do_exit; external name 'fpc_do_exit';
 
 
 
 
-Procedure lib_exit;[Public,Alias:'FPC_LIB_EXIT'];
+Procedure fpc_lib_exit;[Public,Alias:'FPC_LIB_EXIT'];
 begin
 begin
   InternalExit;
   InternalExit;
 end;
 end;

+ 1 - 1
rtl/wince/system.pp

@@ -813,7 +813,7 @@ begin
        end;
        end;
      DLL_PROCESS_DETACH :
      DLL_PROCESS_DETACH :
        begin
        begin
-         Lib_Exit;
+         Fpc_Lib_Exit;
          if assigned(Dll_Process_Detach_Hook) then
          if assigned(Dll_Process_Detach_Hook) then
            Dll_Process_Detach_Hook(DllParam);
            Dll_Process_Detach_Hook(DllParam);
        end;
        end;