mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 12:23:24 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			412 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			412 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
unit buildrtl;
 | 
						|
 | 
						|
  interface
 | 
						|
 | 
						|
    uses
 | 
						|
      ndk, ndkutils, ddk,
 | 
						|
      ctypes, strings,
 | 
						|
      dos,
 | 
						|
      rtlconsts, sysconst, sysutils, math, types,
 | 
						|
      typinfo, fgl, classes,
 | 
						|
{$ifdef cpui386}
 | 
						|
      mmx, cpu,
 | 
						|
{$endif}
 | 
						|
{$ifdef cpux86_64}
 | 
						|
      cpu,
 | 
						|
{$endif}
 | 
						|
      charset, cpall, getopts,
 | 
						|
      character, fpwidestring, unicodedata,
 | 
						|
      softfpu, sfpux80, ufloatx80, sfpu128, ufloat128;
 | 
						|
 | 
						|
  implementation
 | 
						|
 | 
						|
end.
 |