systemh.inc 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614
  1. {
  2. $Id$
  3. This file is part of the Free Pascal Run time library.
  4. Copyright (c) 1999-2000 by the Free Pascal development team
  5. This File contains the OS independent declarations of the system unit
  6. See the File COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. {****************************************************************************
  13. Needed switches
  14. ****************************************************************************}
  15. {$I-,Q-,H-,R-,V-}
  16. {$mode objfpc}
  17. { don't use FPU registervariables on the i386 }
  18. {$ifdef i386}
  19. {$maxfpuregisters 0}
  20. {$endif i386}
  21. { needed for insert,delete,readln }
  22. {$P+}
  23. { Stack check gives a note under linux }
  24. {$ifndef unix}
  25. {$S-}
  26. {$endif}
  27. {****************************************************************************
  28. Global Types and Constants
  29. ****************************************************************************}
  30. Type
  31. ShortInt = -128..127;
  32. SmallInt = -32768..32767;
  33. { can't use -2147483648 because of a bug in 1.0.2's val() procedure (JM) }
  34. Longint = +(-2147483647-1)..$7fffffff;
  35. Byte = 0..255;
  36. Word = 0..65535;
  37. DWord = Cardinal;
  38. LongWord = Cardinal;
  39. Integer = SmallInt;
  40. { at least declare Turbo Pascal real types }
  41. {$ifdef i386}
  42. StrLenInt = LongInt;
  43. {$define DEFAULT_EXTENDED}
  44. {$define SUPPORT_SINGLE}
  45. {$define SUPPORT_DOUBLE}
  46. {$define SUPPORT_EXTENDED}
  47. {$define SUPPORT_COMP}
  48. ValSInt = Longint;
  49. ValUInt = Cardinal;
  50. ValReal = Extended;
  51. {$endif}
  52. {$ifdef m68k}
  53. StrLenInt = Longint;
  54. ValSInt = Longint;
  55. ValUInt = Cardinal;
  56. ValReal = Real;
  57. {$define SUPPORT_SINGLE}
  58. {$endif}
  59. { Zero - terminated strings }
  60. PChar = ^Char;
  61. PPChar = ^PChar;
  62. TAnsiChar = Char;
  63. AnsiChar = TAnsiChar;
  64. PAnsiChar = ^TAnsiChar;
  65. PPAnsiChar = ^PAnsiChar;
  66. UCS4Char = Cardinal;
  67. PUCS4Char = ^UCS4Char;
  68. Currency = Int64;
  69. HRESULT = Longint;
  70. TDateTime = Double;
  71. Error = Longint;
  72. PSingle = ^Single;
  73. PDouble = ^Double;
  74. PCurrency = ^Currency;
  75. {$ifdef SUPPORT_COMP}
  76. PComp = ^Comp;
  77. {$endif SUPPORT_COMP}
  78. {$ifdef SUPPORT_EXTENDED}
  79. PExtended = ^Extended;
  80. {$endif SUPPORT_EXTENDED}
  81. PSmallInt = ^Smallint;
  82. PInteger = ^Longint;
  83. PByte = ^Byte;
  84. PWord = ^word;
  85. PDWord = ^DWord;
  86. PLongWord = ^LongWord;
  87. PLongint = ^Longint;
  88. PCardinal = ^Cardinal;
  89. PQWord = ^QWord;
  90. PInt64 = ^Int64;
  91. PPointer = ^Pointer;
  92. PPPointer = ^PPointer;
  93. PBoolean = ^Boolean;
  94. PWordBool = ^WordBool;
  95. PLongBool = ^LongBool;
  96. PShortString = ^ShortString;
  97. PAnsiString = ^AnsiString;
  98. PDate = ^TDateTime;
  99. PError = ^Error;
  100. {$ifdef HASVARIANT}
  101. PVariant = ^Variant;
  102. {$endif HASVARIANT}
  103. {$ifdef HASWIDECHAR}
  104. PWideChar = ^WideChar;
  105. PPWideChar = ^PWideChar;
  106. {$endif HASWIDECHAR}
  107. {$ifdef HASWIDESTRING}
  108. PWideString = ^WideString;
  109. {$endif HASWIDESTRING}
  110. TTextLineBreakStyle = (tlbsLF,tlbsCRLF,tlbsCR);
  111. { procedure type }
  112. TProcedure = Procedure;
  113. { Text file }
  114. TextFile = Text;
  115. const
  116. { Maximum value of the biggest signed and unsigned integer type available}
  117. MaxSIntValue = High(ValSInt);
  118. MaxUIntValue = High(ValUInt);
  119. { max. values for longint and int}
  120. maxLongint = $7fffffff;
  121. maxSmallint = 32767;
  122. const
  123. maxint = maxsmallint;
  124. { Compatibility With TP }
  125. const
  126. { code to use comps in int64mul and div code is commented out! (JM) }
  127. FPUInt64 : boolean = false; { set this to false if you don't want that }
  128. { the fpu does int64*int64 and }
  129. { int64 div int64, if the * is overflow }
  130. { checked, it is done in software }
  131. {$ifdef i386}
  132. Test8086 : byte = 2; { Always i386 or newer }
  133. Test8087 : byte = 3; { Always 387 or newer. Emulated if needed. }
  134. {$endif i386}
  135. {$ifdef m68k}
  136. Test68000 : byte = 0; { Must be determined at startup for both }
  137. Test68881 : byte = 0;
  138. {$endif}
  139. { max level in dumping on error }
  140. Max_Frame_Dump : Word = 8;
  141. { Exit Procedure handling consts and types }
  142. ExitProc : pointer = nil;
  143. Erroraddr: pointer = nil;
  144. Errorcode: Word = 0;
  145. { file input modes }
  146. fmClosed = $D7B0;
  147. fmInput = $D7B1;
  148. fmOutput = $D7B2;
  149. fmInOut = $D7B3;
  150. fmAppend = $D7B4;
  151. Filemode : byte = 2;
  152. CmdLine : PChar = nil;
  153. var
  154. { Standard In- and Output }
  155. Output,
  156. Input,
  157. StdOut,
  158. StdErr : Text;
  159. ExitCode : Word;
  160. StackBottom,
  161. LowestStack,
  162. RandSeed : Cardinal;
  163. { Delphi compatible }
  164. IsLibrary,IsMultiThreaded,IsConsole : boolean;
  165. {$ifdef MT}
  166. ThreadVar
  167. {$else MT}
  168. Var
  169. {$endif MT}
  170. InOutRes : Word;
  171. {****************************************************************************
  172. Processor specific routines
  173. ****************************************************************************}
  174. Procedure Move(const source;var dest;count:Longint);
  175. Procedure FillChar(Var x;count:Longint;Value:Boolean);
  176. Procedure FillChar(Var x;count:Longint;Value:Char);
  177. Procedure FillChar(Var x;count:Longint;Value:Byte);
  178. procedure FillByte(var x;count:longint;value:byte);
  179. Procedure FillWord(Var x;count:Longint;Value:Word);
  180. procedure FillDWord(var x;count:longint;value:DWord);
  181. function IndexChar(const buf;len:longint;b:char):longint;
  182. function IndexByte(const buf;len:longint;b:byte):longint;
  183. function Indexword(const buf;len:longint;b:word):longint;
  184. function IndexDWord(const buf;len:longint;b:DWord):longint;
  185. function CompareChar(const buf1,buf2;len:longint):longint;
  186. function CompareByte(const buf1,buf2;len:longint):longint;
  187. function CompareWord(const buf1,buf2;len:longint):longint;
  188. function CompareDWord(const buf1,buf2;len:longint):longint;
  189. procedure MoveChar0(const buf1;var buf2;len:longint);
  190. function IndexChar0(const buf;len:longint;b:char):longint;
  191. function CompareChar0(const buf1,buf2;len:longint):longint;
  192. {****************************************************************************
  193. Math Routines
  194. ****************************************************************************}
  195. Function lo(w:Word):byte;
  196. Function lo(l:Longint):Word;
  197. Function lo(l:DWord):Word;
  198. Function lo(i:Integer):byte;
  199. Function lo(B: Byte):Byte;
  200. Function hi(w:Word):byte;
  201. Function hi(i:Integer):byte;
  202. Function hi(l:Longint):Word;
  203. Function hi(b : Byte) : Byte;
  204. Function hi(l: DWord): Word;
  205. Function Swap (X:Word):Word;
  206. Function Swap (X:Integer):Integer;
  207. Function Swap (X:Cardinal):Cardinal;
  208. Function Swap (X:LongInt):LongInt;
  209. Function lo(q : QWord) : DWord;
  210. Function lo(i : Int64) : DWord;
  211. Function hi(q : QWord) : DWord;
  212. Function hi(i : Int64) : DWord;
  213. Function Swap (X:QWord):QWord;
  214. Function Swap (X:Int64):Int64;
  215. Function Random(l:cardinal):cardinal;
  216. Function Random(l:longint):longint;
  217. Function Random: extended;
  218. Procedure Randomize;
  219. Function abs(l:Longint):Longint;
  220. Function sqr(l:Longint):Longint;
  221. Function odd(l:Longint):Boolean;
  222. Function odd(l:Cardinal):Boolean;
  223. Function odd(l:Int64):Boolean;
  224. Function odd(l:QWord):Boolean;
  225. { float math routines }
  226. {$I mathh.inc}
  227. {****************************************************************************
  228. Addr/Pointer Handling
  229. ****************************************************************************}
  230. Function ptr(sel,off:Longint):farpointer;
  231. Function Cseg:Word;
  232. Function Dseg:Word;
  233. Function Sseg:Word;
  234. {****************************************************************************
  235. PChar and String Handling
  236. ****************************************************************************}
  237. function strpas(p:pchar):shortstring;
  238. function strlen(p:pchar):longint;
  239. { Shortstring functions }
  240. {$ifndef INTERNSETLENGTH}
  241. Procedure SetLength (Var S:ShortString;len:StrLenInt);
  242. {$endif INTERNSETLENGTH}
  243. Function Copy(const s:shortstring;index:StrLenInt;count:StrLenInt):shortstring;
  244. Procedure Delete(Var s:shortstring;index:StrLenInt;count:StrLenInt);
  245. Procedure Insert(const source:shortstring;Var s:shortstring;index:StrLenInt);
  246. Procedure Insert(source:Char;Var s:shortstring;index:StrLenInt);
  247. Function Pos(const substr:shortstring;const s:shortstring):StrLenInt;
  248. Function Pos(C:Char;const s:shortstring):StrLenInt;
  249. Procedure SetString (Var S : Shortstring; Buf : PChar; Len : Longint);
  250. Procedure SetString (Var S : AnsiString; Buf : PChar; Len : Longint);
  251. {$ifndef INTERNLENGTH}
  252. Function Length(s:string):byte;
  253. {$endif INTERNLENGTH}
  254. Function upCase(const s:shortstring):shortstring;
  255. Function lowerCase(const s:shortstring):shortstring;
  256. Function Space(b:byte):shortstring;
  257. Function hexStr(Val:Longint;cnt:byte):shortstring;
  258. Function binStr(Val:Longint;cnt:byte):shortstring;
  259. Function hexStr(Val:int64;cnt:byte):shortstring;
  260. Function binStr(Val:int64;cnt:byte):shortstring;
  261. { Char functions }
  262. Function Chr(b:byte):Char;
  263. Function upCase(c:Char):Char;
  264. Function lowerCase(c:Char):Char;
  265. function copy(c:char;index : StrLenInt;count : StrLenInt): shortstring;
  266. function pos(const substr : shortstring;c:char): StrLenInt;
  267. {$ifndef INTERNLENGTH}
  268. function length(c:char):byte;
  269. {$endif INTERNLENGTH}
  270. {****************************************************************************
  271. AnsiString Handling
  272. ****************************************************************************}
  273. {$ifndef INTERNSETLENGTH}
  274. Procedure SetLength (Var S : AnsiString; l : Longint);
  275. {$endif INTERNSETLENGTH}
  276. Procedure UniqueString (Var S : AnsiString);
  277. {$ifndef INTERNLENGTH}
  278. Function Length (Const S : AnsiString) : Longint;
  279. {$endif INTERNLENGTH}
  280. Function Copy (Const S : AnsiString; Index,Size : Longint) : AnsiString;
  281. Function Pos (Const Substr : AnsiString; Const Source : AnsiString) : Longint;
  282. Function Pos (c : Char; Const s : AnsiString) : Longint;
  283. Procedure Insert (Const Source : AnsiString; Var S : AnsiString; Index : Longint);
  284. Procedure Delete (Var S : AnsiString; Index,Size: Longint);
  285. Function StringOfChar(c : char;l : longint) : AnsiString;
  286. function upcase(const s : ansistring) : ansistring;
  287. function lowercase(const s : ansistring) : ansistring;
  288. {****************************************************************************
  289. WideString Handling
  290. ****************************************************************************}
  291. {$ifdef HASWIDESTRING}
  292. {$ifndef INTERNSETLENGTH}
  293. Procedure SetLength (Var S : WideString; l : Longint);
  294. {$endif INTERNSETLENGTH}
  295. Procedure UniqueString (Var S : WideString);
  296. {$ifndef INTERNLENGTH}
  297. Function Length (Const S : WideString) : Longint;
  298. {$endif INTERNLENGTH}
  299. Function Copy (Const S : WideString; Index,Size : Longint) : WideString;
  300. Function Pos (Const Substr : WideString; Const Source : WideString) : Longint;
  301. Function Pos (c : Char; Const s : WideString) : Longint;
  302. Function Pos (c : WideChar; Const s : WideString) : Longint;
  303. Procedure Insert (Const Source : WideString; Var S : WideString; Index : Longint);
  304. Procedure Delete (Var S : WideString; Index,Size: Longint);
  305. {$endif HASWIDESTRING}
  306. {****************************************************************************
  307. Untyped File Management
  308. ****************************************************************************}
  309. Procedure Assign(Var f:File;const Name:string);
  310. Procedure Assign(Var f:File;p:pchar);
  311. Procedure Assign(Var f:File;c:char);
  312. Procedure Rewrite(Var f:File;l:Longint);
  313. Procedure Rewrite(Var f:File);
  314. Procedure Reset(Var f:File;l:Longint);
  315. Procedure Reset(Var f:File);
  316. Procedure Close(Var f:File);
  317. Procedure BlockWrite(Var f:File;Const Buf;Count:Longint;Var Result:Longint);
  318. Procedure BlockWrite(Var f:File;Const Buf;Count:Cardinal;var Result:Cardinal);
  319. Procedure BlockWrite(Var f:File;Const Buf;Count:Word;Var Result:Word);
  320. Procedure BlockWrite(Var f:File;Const Buf;Count:Word;Var Result:Integer);
  321. Procedure BlockWrite(Var f:File;Const Buf;Count:Longint);
  322. Procedure BlockRead(Var f:File;Var Buf;count:Longint;Var Result:Longint);
  323. Procedure BlockRead(Var f:File;Var Buf;count:Cardinal;Var Result:Cardinal);
  324. Procedure BlockRead(Var f:File;Var Buf;count:Word;Var Result:Word);
  325. Procedure BlockRead(Var f:File;Var Buf;count:Word;Var Result:Integer);
  326. Procedure BlockRead(Var f:File;Var Buf;count:Longint);
  327. Function FilePos(Var f:File):Longint;
  328. Function FileSize(Var f:File):Longint;
  329. Procedure Seek(Var f:File;Pos:Longint);
  330. Function EOF(Var f:File):Boolean;
  331. Procedure Erase(Var f:File);
  332. Procedure Rename(Var f:File;const s:string);
  333. Procedure Rename(Var f:File;p:pchar);
  334. Procedure Rename(Var f:File;c:char);
  335. Procedure Truncate (Var F:File);
  336. {****************************************************************************
  337. Typed File Management
  338. ****************************************************************************}
  339. Procedure Assign(Var f:TypedFile;const Name:string);
  340. Procedure Assign(Var f:TypedFile;p:pchar);
  341. Procedure Assign(Var f:TypedFile;c:char);
  342. Procedure Rewrite(Var f:TypedFile);
  343. Procedure Reset(Var f:TypedFile);
  344. {****************************************************************************
  345. Text File Management
  346. ****************************************************************************}
  347. Procedure Assign(Var t:Text;const s:string);
  348. Procedure Assign(Var t:Text;p:pchar);
  349. Procedure Assign(Var t:Text;c:char);
  350. Procedure Close(Var t:Text);
  351. Procedure Rewrite(Var t:Text);
  352. Procedure Reset(Var t:Text);
  353. Procedure Append(Var t:Text);
  354. Procedure Flush(Var t:Text);
  355. Procedure Erase(Var t:Text);
  356. Procedure Rename(Var t:Text;const s:string);
  357. Procedure Rename(Var t:Text;p:pchar);
  358. Procedure Rename(Var t:Text;c:char);
  359. Function EOF(Var t:Text):Boolean;
  360. Function EOF:Boolean;
  361. Function EOLn(Var t:Text):Boolean;
  362. Function EOLn:Boolean;
  363. Function SeekEOLn (Var t:Text):Boolean;
  364. Function SeekEOF (Var t:Text):Boolean;
  365. Function SeekEOLn:Boolean;
  366. Function SeekEOF:Boolean;
  367. Procedure SetTextBuf(Var f:Text; Var Buf);
  368. Procedure SetTextBuf(Var f:Text; Var Buf; Size:Longint);
  369. {****************************************************************************
  370. Directory Management
  371. ****************************************************************************}
  372. Procedure chdir(const s:string);
  373. Procedure mkdir(const s:string);
  374. Procedure rmdir(const s:string);
  375. Procedure getdir(drivenr:byte;Var dir:shortstring);
  376. Procedure getdir(drivenr:byte;Var dir:ansistring);
  377. {*****************************************************************************
  378. Miscelleaous
  379. *****************************************************************************}
  380. { os independent calls to allow backtraces }
  381. function get_frame:longint;
  382. function get_caller_addr(framebp:longint):longint;
  383. function get_caller_frame(framebp:longint):longint;
  384. Function IOResult:Word;
  385. Function Sptr:Longint;
  386. {*****************************************************************************
  387. Init / Exit / ExitProc
  388. *****************************************************************************}
  389. Function Paramcount:Longint;
  390. Function ParamStr(l:Longint):string;
  391. Procedure Dump_Stack(var f : text;bp:Longint);
  392. Procedure RunError(w:Word);
  393. Procedure RunError;
  394. Procedure halt(errnum:byte);
  395. Procedure AddExitProc(Proc:TProcedure);
  396. Procedure halt;
  397. {*****************************************************************************
  398. Abstract/Assert/Error Handling
  399. *****************************************************************************}
  400. procedure AbstractError;
  401. Function SysBackTraceStr(Addr: Longint): ShortString;
  402. Procedure SysAssert(Const Msg,FName:ShortString;LineNo,ErrorAddr:Longint);
  403. { Error handlers }
  404. Type
  405. TBackTraceStrFunc = Function (Addr: Longint): ShortString;
  406. TErrorProc = Procedure (ErrNo : Longint; Address,Frame : Pointer);
  407. TAbstractErrorProc = Procedure;
  408. TAssertErrorProc = Procedure(const msg,fname:ShortString;lineno,erroraddr:longint);
  409. const
  410. BackTraceStrFunc : TBackTraceStrFunc = @SysBackTraceStr;
  411. ErrorProc : TErrorProc = nil;
  412. AbstractErrorProc : TAbstractErrorProc = nil;
  413. AssertErrorProc : TAssertErrorProc = @SysAssert;
  414. {*****************************************************************************
  415. SetJmp/LongJmp
  416. *****************************************************************************}
  417. {$i setjumph.inc}
  418. {*****************************************************************************
  419. Object Pascal support
  420. *****************************************************************************}
  421. {$i objpash.inc}
  422. {
  423. $Log$
  424. Revision 1.27 2001-07-10 18:04:37 peter
  425. * merged textfile, readlink and concat ansistring fixes
  426. Revision 1.26 2001/07/09 21:15:41 peter
  427. * Length made internal
  428. * Add array support for Length
  429. Revision 1.25 2001/07/08 21:00:18 peter
  430. * various widestring updates, it works now mostly without charset
  431. mapping supported
  432. Revision 1.24 2001/06/04 11:43:51 peter
  433. * Formal const to var fixes
  434. * Hexstr(int64) added
  435. Revision 1.23 2001/06/03 20:17:06 peter
  436. * ucs4char added
  437. Revision 1.22 2001/05/16 17:44:25 jonas
  438. + odd() for cardinal, int64 and qword (merged)
  439. Revision 1.21 2001/05/09 19:57:07 peter
  440. *** empty log message ***
  441. Revision 1.20 2001/04/23 18:25:45 peter
  442. * m68k updates
  443. Revision 1.19 2001/04/13 18:06:07 peter
  444. * upcase, lowercase for ansistring
  445. Revision 1.18 2001/03/22 23:26:05 florian
  446. * some new types added like PBoolean
  447. Revision 1.17 2001/03/21 23:29:40 florian
  448. + sLineBreak and misc. stuff for Kylix compatiblity
  449. Revision 1.16 2001/01/24 21:47:18 florian
  450. + more MT stuff added
  451. Revision 1.15 2000/12/16 15:56:19 jonas
  452. - removed all ifdef cardinalmulfix code
  453. Revision 1.14 2000/12/08 14:04:43 jonas
  454. + added pos(char,ansistring), because there is also a pos(char,shortstring)
  455. and without the ansistring version, the shortstring version is always
  456. called when calling pos(char,pchar), even when using $h+ (because the
  457. first parameter matches exactly) (merged)
  458. Revision 1.13 2000/12/07 17:19:47 jonas
  459. * new constant handling: from now on, hex constants >$7fffffff are
  460. parsed as unsigned constants (otherwise, $80000000 got sign extended
  461. and became $ffffffff80000000), all constants in the longint range
  462. become longints, all constants >$7fffffff and <=cardinal($ffffffff)
  463. are cardinals and the rest are int64's.
  464. * added lots of longint typecast to prevent range check errors in the
  465. compiler and rtl
  466. * type casts of symbolic ordinal constants are now preserved
  467. * fixed bug where the original resulttype wasn't restored correctly
  468. after doing a 64bit rangecheck
  469. Revision 1.12 2000/11/13 13:40:04 marco
  470. * Renamefest
  471. Revision 1.11 2000/11/11 16:12:01 peter
  472. * ptr returns farpointer
  473. Revision 1.10 2000/11/06 21:35:59 peter
  474. * removed some warnings
  475. Revision 1.9 2000/11/06 20:34:24 peter
  476. * changed ver1_0 defines to temporary defs
  477. Revision 1.8 2000/10/23 16:15:40 jonas
  478. * renamed strlenint to longint since 1.0 doesn't know that type
  479. Revision 1.7 2000/10/23 14:00:59 florian
  480. * setlength export declaration for 1.0.2 fixed
  481. Revision 1.6 2000/10/21 18:20:17 florian
  482. * a lot of small changes:
  483. - setlength is internal
  484. - win32 graph unit extended
  485. ....
  486. Revision 1.5 2000/08/13 17:55:15 michael
  487. + Added some delphi compatibility types
  488. Revision 1.4 2000/08/08 22:11:45 sg
  489. * Added declarations for WideString utility functions
  490. Revision 1.3 2000/07/14 10:33:10 michael
  491. + Conditionals fixed
  492. Revision 1.2 2000/07/13 11:33:45 michael
  493. + removed logs
  494. }