mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 16:59:45 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
{
 | 
						|
    $Id$
 | 
						|
    This file is part of the Free Pascal run time library.
 | 
						|
    Copyright (c) 2001 by Carl Eric Codere development team
 | 
						|
 | 
						|
    Base Unix unit modelled after POSIX 2001.
 | 
						|
 | 
						|
    See the file COPYING.FPC, included in this distribution,
 | 
						|
    for details about the copyright.
 | 
						|
 | 
						|
    This program is distributed in the hope that it will be useful,
 | 
						|
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 | 
						|
 | 
						|
 **********************************************************************}
 | 
						|
Unit BaseUnix;
 | 
						|
 | 
						|
Interface
 | 
						|
{$define oldreaddir}		// Keep using readdir system call instead
 | 
						|
				// of userland getdents stuff.
 | 
						|
{$define usedomain}		// Allow uname with "domain" entry.
 | 
						|
				// (which is a GNU extension)
 | 
						|
{$define posixworkaround}	// Temporary ugly workaround for signal handler.
 | 
						|
				// (mainly until baseunix migration is complete)
 | 
						|
 | 
						|
{$i errno.inc}		{ Error numbers }
 | 
						|
{$i bunxtype.inc}	{ Types }
 | 
						|
{$i bunxh.inc}		{ Functions}
 | 
						|
 | 
						|
implementation
 | 
						|
 | 
						|
{$i bunxmain.inc}	{ implementation}
 | 
						|
{$i bunxovl.inc}	{ redefs and overloads implementation}
 | 
						|
 | 
						|
end.
 | 
						|
 | 
						|
{
 | 
						|
  $Log$
 | 
						|
  Revision 1.1  2002-12-18 16:44:09  marco
 | 
						|
   * more new RTL
 | 
						|
 | 
						|
  Revision 1.2  2002/11/14 12:17:28  marco
 | 
						|
   * for now.
 | 
						|
 | 
						|
} |