summaryrefslogtreecommitdiff
path: root/rtl/inc/file.inc
diff options
context:
space:
mode:
authorjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2009-03-15 12:31:02 +0000
committerjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2009-03-15 12:31:02 +0000
commit6b44844da395fe5b73d8c77ee3066cfd1afa327e (patch)
tree6dfc563f8df821e9a2f9e08418e89dd4217c7416 /rtl/inc/file.inc
parentd3fc5236b1d3f2c0dfc774997e68d0a03633a263 (diff)
downloadfpc-6b44844da395fe5b73d8c77ee3066cfd1afa327e.tar.gz
- removed PARAOUTFILE define and ifdefs
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@12898 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'rtl/inc/file.inc')
-rw-r--r--rtl/inc/file.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/rtl/inc/file.inc b/rtl/inc/file.inc
index ee840cfc2d..37e8c754b2 100644
--- a/rtl/inc/file.inc
+++ b/rtl/inc/file.inc
@@ -18,7 +18,7 @@
type
UnTypedFile=File;
-Procedure Assign({$ifdef PARAOUTFILE}out{$else}var{$endif} f:File;const Name:string);
+Procedure Assign(out f:File;const Name:string);
{
Assign Name to file f so it can be used with the file routines
}
@@ -30,7 +30,7 @@ Begin
End;
-Procedure Assign({$ifdef PARAOUTFILE}out{$else}var{$endif} f:File;p:pchar);
+Procedure Assign(out f:File;p:pchar);
{
Assign Name to file f so it can be used with the file routines
}
@@ -39,7 +39,7 @@ begin
end;
-Procedure Assign({$ifdef PARAOUTFILE}out{$else}var{$endif} f:File;c:char);
+Procedure Assign(out f:File;c:char);
{
Assign Name to file f so it can be used with the file routines
}