Browse Source

* Fixed apr_off_t (bug ID 11460)

git-svn-id: trunk@11216 -
michael 17 years ago
parent
commit
22d8bfeeff
1 changed files with 0 additions and 9 deletions
  1. 0 9
      packages/httpd22/src/apr/apr.pas

+ 0 - 9
packages/httpd22/src/apr/apr.pas

@@ -97,16 +97,7 @@ type
   apr_uint32_tso_handle_t = cuint;
 
 type
-  {$IFDEF WINDOWS}
   apr_off_t = Int64;
-  {$ENDIF}
-  {$IFDEF UNIX}
-  {$ifdef CPU64}
-  apr_off_t = int64;
-  {$else}
-  apr_off_t = Integer;
-  {$endif}
-  {$ENDIF}
 
   apr_int32_t = Integer;
   Papr_int32_t = ^Integer;