termios.inc 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588
  1. {
  2. $Id$
  3. }
  4. {$PACKRECORDS C}
  5. {
  6. Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
  7. @APPLE_LICENSE_HEADER_START@
  8. The contents of this file constitute Original Code as defined in and
  9. are subject to the Apple Public Source License Version 1.1 (the
  10. "License"). You may not use this file except in compliance with the
  11. License. Please obtain a copy of the License at
  12. http://www.apple.com/publicsource and read it before using this file.
  13. This Original Code and all software distributed under the License are
  14. distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
  15. EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
  16. INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
  17. FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
  18. License for the specific language governing rights and limitations
  19. under the License.
  20. @APPLE_LICENSE_HEADER_END@
  21. }
  22. { Copyright (c) 1997 Apple Computer, Inc. All Rights Reserved }
  23. {
  24. Copyright (c) 1988, 1989, 1993, 1994
  25. The Regents of the University of California. All rights reserved.
  26. Redistribution and use in source and binary forms, with or without
  27. modification, are permitted provided that the following conditions
  28. are met:
  29. 1. Redistributions of source code must retain the above copyright
  30. notice, this list of conditions and the following disclaimer.
  31. 2. Redistributions in binary form must reproduce the above copyright
  32. notice, this list of conditions and the following disclaimer in the
  33. documentation and/or other materials provided with the distribution.
  34. 3. All advertising materials mentioning features or use of this software
  35. must display the following acknowledgement:
  36. This product includes software developed by the University of
  37. California, Berkeley and its contributors.
  38. 4. Neither the name of the University nor the names of its contributors
  39. may be used to endorse or promote products derived from this software
  40. without specific prior written permission.
  41. THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  42. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  43. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  44. ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  45. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  46. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  47. OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  49. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  50. OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  51. SUCH DAMAGE.
  52. @(#)termios.h 8.3 (Berkeley) 3/28/94
  53. }
  54. {$ifndef _SYS_TERMIOS_H_}
  55. {$define _SYS_TERMIOS_H_}
  56. {
  57. Special Control Characters
  58. Index into c_cc[] character array.
  59. Name Subscript Enabled by
  60. }
  61. { ICANON }
  62. const
  63. VEOF = 0;
  64. { ICANON }
  65. VEOL = 1;
  66. {$ifndef _POSIX_SOURCE}
  67. { ICANON together with IEXTEN }
  68. const
  69. VEOL2 = 2;
  70. {$endif}
  71. { ICANON }
  72. const
  73. VERASE = 3;
  74. {$ifndef _POSIX_SOURCE}
  75. { ICANON together with IEXTEN }
  76. const
  77. VWERASE = 4;
  78. {$endif}
  79. { ICANON }
  80. const
  81. VKILL = 5;
  82. {$ifndef _POSIX_SOURCE}
  83. { ICANON together with IEXTEN }
  84. const
  85. VREPRINT = 6;
  86. {$endif}
  87. { 7 spare 1 }
  88. { ISIG }
  89. const
  90. VINTR = 8;
  91. { ISIG }
  92. VQUIT = 9;
  93. { ISIG }
  94. VSUSP = 10;
  95. {$ifndef _POSIX_SOURCE}
  96. { ISIG together with IEXTEN }
  97. const
  98. VDSUSP = 11;
  99. {$endif}
  100. { IXON, IXOFF }
  101. const
  102. VSTART = 12;
  103. { IXON, IXOFF }
  104. VSTOP = 13;
  105. {$ifndef _POSIX_SOURCE}
  106. { IEXTEN }
  107. const
  108. VLNEXT = 14;
  109. { IEXTEN }
  110. VDISCARD = 15;
  111. {$endif}
  112. { !ICANON }
  113. const
  114. VMIN = 16;
  115. { !ICANON }
  116. VTIME = 17;
  117. {$ifndef _POSIX_SOURCE}
  118. { ICANON together with IEXTEN }
  119. const
  120. VSTATUS = 18;
  121. { 19 spare 2 }
  122. {$endif}
  123. const
  124. NCCS = 20;
  125. {$ifndef _POSIX_VDISABLE}
  126. // as in linux freebsd netbsd and openbsd
  127. // Start
  128. Type
  129. winsize = packed record
  130. ws_row,
  131. ws_col,
  132. ws_xpixel,
  133. ws_ypixel : word;
  134. end;
  135. TWinSize=winsize;
  136. //End
  137. const
  138. _POSIX_VDISABLE = $ff;
  139. {$endif}
  140. {$ifndef _POSIX_SOURCE}
  141. { was #define dname(params) para_def_expr }
  142. { argument types are unknown }
  143. { return type might be wrong }
  144. // function CCEQ(val,c : longint) : longint;
  145. // as in freebsd netbsd and openbsd and in /usr/include/sys/termios.h
  146. {
  147. #define CCEQ(val, c) ((c) == (val) ? (val) != _POSIX_VDISABLE : 0)
  148. }
  149. {$endif}
  150. {
  151. Input flags - software input processing
  152. }
  153. { ignore BREAK condition }
  154. const
  155. IGNBRK = $00000001;
  156. { map BREAK to SIGINTR }
  157. BRKINT = $00000002;
  158. { ignore (discard) parity errors }
  159. IGNPAR = $00000004;
  160. { mark parity and framing errors }
  161. PARMRK = $00000008;
  162. { enable checking of parity errors }
  163. INPCK = $00000010;
  164. { strip 8th bit off chars }
  165. ISTRIP = $00000020;
  166. { map NL into CR }
  167. INLCR = $00000040;
  168. { ignore CR }
  169. IGNCR = $00000080;
  170. { map CR to NL (ala CRMOD) }
  171. ICRNL = $00000100;
  172. { enable output flow control }
  173. IXON = $00000200;
  174. { enable input flow control }
  175. IXOFF = $00000400;
  176. {$ifndef _POSIX_SOURCE}
  177. { any char will restart after stop }
  178. const
  179. IXANY = $00000800;
  180. { ring bell on input queue full }
  181. IMAXBEL = $00002000;
  182. {$endif}
  183. {_POSIX_SOURCE }
  184. {
  185. Output flags - software output processing
  186. }
  187. { enable following output processing }
  188. const
  189. OPOST = $00000001;
  190. {$ifndef _POSIX_SOURCE}
  191. { map NL to CR-NL (ala CRMOD) }
  192. const
  193. ONLCR = $00000002;
  194. { expand tabs to spaces }
  195. OXTABS = $00000004;
  196. { discard EOT's (^D) on output) }
  197. ONOEOT = $00000008;
  198. {$endif}
  199. {_POSIX_SOURCE }
  200. {
  201. Control flags - hardware control of terminal
  202. }
  203. {$ifndef _POSIX_SOURCE}
  204. { ignore control flags }
  205. const
  206. CIGNORE = $00000001;
  207. {$endif}
  208. { character size mask }
  209. const
  210. CSIZE = $00000300;
  211. { 5 bits (pseudo) }
  212. CS5 = $00000000;
  213. { 6 bits }
  214. CS6 = $00000100;
  215. { 7 bits }
  216. CS7 = $00000200;
  217. { 8 bits }
  218. CS8 = $00000300;
  219. { send 2 stop bits }
  220. CSTOPB = $00000400;
  221. { enable receiver }
  222. CREAD = $00000800;
  223. { parity enable }
  224. PARENB = $00001000;
  225. { odd parity, else even }
  226. PARODD = $00002000;
  227. { hang up on last close }
  228. HUPCL = $00004000;
  229. { ignore modem status lines }
  230. CLOCAL = $00008000;
  231. {$ifndef _POSIX_SOURCE}
  232. { CTS flow control of output }
  233. const
  234. CCTS_OFLOW = $00010000;
  235. { RTS flow control of input }
  236. CRTS_IFLOW = $00020000;
  237. CRTSCTS = CCTS_OFLOW or CRTS_IFLOW;
  238. { DTR flow control of input }
  239. CDTR_IFLOW = $00040000;
  240. { DSR flow control of output }
  241. CDSR_OFLOW = $00080000;
  242. { DCD flow control of output }
  243. CCAR_OFLOW = $00100000;
  244. { old name for CCAR_OFLOW }
  245. MDMBUF = $00100000;
  246. {$endif}
  247. {
  248. "Local" flags - dumping ground for other state
  249. Warning: some flags in this structure begin with
  250. the letter "I" and look like they belong in the
  251. input flag.
  252. }
  253. {$ifndef _POSIX_SOURCE}
  254. { visual erase for line kill }
  255. const
  256. ECHOKE = $00000001;
  257. {$endif}
  258. {_POSIX_SOURCE }
  259. { visually erase chars }
  260. const
  261. ECHOE = $00000002;
  262. { echo NL after line kill }
  263. ECHOK = $00000004;
  264. { enable echoing }
  265. ECHO = $00000008;
  266. { echo NL even if ECHO is off }
  267. ECHONL = $00000010;
  268. {$ifndef _POSIX_SOURCE}
  269. { visual erase mode for hardcopy }
  270. const
  271. ECHOPRT = $00000020;
  272. { echo control chars as ^(Char) }
  273. ECHOCTL = $00000040;
  274. {$endif}
  275. {_POSIX_SOURCE }
  276. { enable signals INTR, QUIT, [D]SUSP }
  277. const
  278. ISIG = $00000080;
  279. { canonicalize input lines }
  280. ICANON = $00000100;
  281. {$ifndef _POSIX_SOURCE}
  282. { use alternate WERASE algorithm }
  283. const
  284. ALTWERASE = $00000200;
  285. {$endif}
  286. {_POSIX_SOURCE }
  287. { enable DISCARD and LNEXT }
  288. const
  289. IEXTEN = $00000400;
  290. { external processing }
  291. EXTPROC = $00000800;
  292. { stop background jobs from output }
  293. TOSTOP = $00400000;
  294. {$ifndef _POSIX_SOURCE}
  295. { output being flushed (state) }
  296. const
  297. FLUSHO = $00800000;
  298. { no kernel output from VSTATUS }
  299. NOKERNINFO = $02000000;
  300. { XXX retype pending input (state) }
  301. PENDIN = $20000000;
  302. {$endif}
  303. {_POSIX_SOURCE }
  304. { don't flush after interrupt }
  305. const
  306. NOFLSH = $80000000;
  307. type
  308. tcflag_t = dword;
  309. cc_t = byte;
  310. speed_t = longint;
  311. { XXX should be unsigned long }
  312. { input flags }
  313. { output flags }
  314. { control flags }
  315. { local flags }
  316. { control chars }
  317. { input speed }
  318. { output speed }
  319. termios = record
  320. c_iflag : tcflag_t;
  321. c_oflag : tcflag_t;
  322. c_cflag : tcflag_t;
  323. c_lflag : tcflag_t;
  324. c_cc : array[0..(NCCS)-1] of cc_t;
  325. c_ispeed : speed_t;
  326. c_ospeed : speed_t;
  327. end;
  328. {
  329. Commands passed to tcsetattr() for setting the termios structure.
  330. }
  331. { make change immediate }
  332. const
  333. TCSANOW = 0;
  334. { drain output, then change }
  335. TCSADRAIN = 1;
  336. { drain output, flush input }
  337. TCSAFLUSH = 2;
  338. {$ifndef _POSIX_SOURCE}
  339. { flag - don't alter h.w. state }
  340. const
  341. TCSASOFT = $10;
  342. {$endif}
  343. {
  344. Standard speeds
  345. }
  346. const
  347. B0 = 0;
  348. B50 = 50;
  349. B75 = 75;
  350. B110 = 110;
  351. B134 = 134;
  352. B150 = 150;
  353. B200 = 200;
  354. B300 = 300;
  355. B600 = 600;
  356. B1200 = 1200;
  357. B1800 = 1800;
  358. B2400 = 2400;
  359. B4800 = 4800;
  360. B9600 = 9600;
  361. B19200 = 19200;
  362. B38400 = 38400;
  363. {$ifndef _POSIX_SOURCE}
  364. const
  365. B7200 = 7200;
  366. B14400 = 14400;
  367. B28800 = 28800;
  368. B57600 = 57600;
  369. B76800 = 76800;
  370. B115200 = 115200;
  371. B230400 = 230400;
  372. EXTA = 19200;
  373. EXTB = 38400;
  374. {$endif}
  375. { !_POSIX_SOURCE }
  376. const
  377. TCIFLUSH = 1;
  378. TCOFLUSH = 2;
  379. TCIOFLUSH = 3;
  380. TCOOFF = 1;
  381. TCOON = 2;
  382. TCIOFF = 3;
  383. TCION = 4;
  384. // as in freebsd netbsd and openbsd and in
  385. // /usr/include/sys/ttycom.h und ioccom.h
  386. IOCTLREAD = $40000000;
  387. IOCTLWRITE = $80000000;
  388. IOCTLVOID = $20000000;
  389. TIOCMODG = IOCTLREAD+$47400+ 3; { get modem control state }
  390. TIOCMODS = IOCTLWRITE+$47400+ 4; { set modem control state }
  391. TIOCM_LE =$0001; { line enable }
  392. TIOCM_DTR =$0002; { data terminal ready }
  393. TIOCM_RTS =$0004; { request to send }
  394. TIOCM_ST =$0010; { secondary transmit }
  395. TIOCM_SR =$0020; { secondary receive }
  396. TIOCM_CTS =$0040; { clear to send }
  397. TIOCM_CAR =$0100; { carrier detect }
  398. TIOCM_CD =TIOCM_CAR;
  399. TIOCM_RNG =$0200; { ring }
  400. TIOCM_RI =TIOCM_RNG;
  401. TIOCM_DSR =$0400; { data set ready }
  402. { 8-10 compat }
  403. TIOCEXCL =IOCTLVOID+$7400+ 13; { set exclusive use of tty }
  404. TIOCNXCL =IOCTLVOID+$7400+ 14; { reset exclusive use of tty }
  405. { 15 unused }
  406. TIOCFLUSH =IOCTLWRITE+$47400+ 16; { flush buffers }
  407. { 17-18 compat }
  408. TIOCGETA =IOCTLREAD+$2C7400+ 19; { get termios struct }
  409. TIOCSETA =IOCTLWRITE+$2C7400+ 20; { set termios struct }
  410. TIOCSETAW =IOCTLWRITE+$2C7400+ 21; { drain output, set }
  411. TIOCSETAF =IOCTLWRITE+$2C7400+ 22; { drn out, fls in, set }
  412. TIOCGETD =IOCTLREAD+$47400+ 26; { get line discipline }
  413. TIOCSETD =IOCTLWRITE+$47400+ 27; { set line discipline }
  414. { 127-124 compat }
  415. TIOCSBRK =IOCTLVOID+$7400+ 123; { set break bit }
  416. TIOCCBRK =IOCTLVOID+$7400+ 122; { clear break bit }
  417. TIOCSDTR =IOCTLVOID+$7400+ 121; { set data terminal ready }
  418. TIOCCDTR =IOCTLVOID+$7400+ 120; { clear data terminal ready }
  419. TIOCGPGRP =IOCTLREAD+$47400+ 119; { get pgrp of tty }
  420. TIOCSPGRP =IOCTLWRITE+$47400+ 118; { set pgrp of tty }
  421. { 117-116 compat }
  422. TIOCOUTQ =IOCTLREAD+$47400+ 115; { output queue size }
  423. TIOCSTI =IOCTLWRITE+$17400+ 114; { simulate terminal input }
  424. TIOCNOTTY =IOCTLVOID+$7400+ 113; { void tty association }
  425. TIOCPKT =IOCTLWRITE+$47400+ 112; { pty: set/clear packet mode }
  426. TIOCPKT_DATA =$00; { data packet }
  427. TIOCPKT_FLUSHREAD =$01; { flush packet }
  428. TIOCPKT_FLUSHWRITE =$02; { flush packet }
  429. TIOCPKT_STOP =$04; { stop output }
  430. TIOCPKT_START =$08; { start output }
  431. TIOCPKT_NOSTOP =$10; { no more ^S, ^Q }
  432. TIOCPKT_DOSTOP =$20; { now do ^S ^Q }
  433. TIOCPKT_IOCTL =$40; { state change of pty driver }
  434. TIOCSTOP =IOCTLVOID+$7400+ 111; { stop output, like ^S }
  435. TIOCSTART =IOCTLVOID+$7400+ 110; { start output, like ^Q }
  436. TIOCMSET =IOCTLWRITE+$47400+ 109; { set all modem bits }
  437. TIOCMBIS =IOCTLWRITE+$47400+ 108; { bis modem bits }
  438. TIOCMBIC =IOCTLWRITE+$47400+ 107; { bic modem bits }
  439. TIOCMGET =IOCTLREAD+$47400+ 106; { get all modem bits }
  440. TIOCREMOTE =IOCTLWRITE+$47400+ 105; { remote input editing }
  441. TIOCGWINSZ =IOCTLREAD+$87400+ 104; { get window size }
  442. TIOCSWINSZ =IOCTLWRITE+$87400+ 103; { set window size }
  443. TIOCUCNTL =IOCTLWRITE+$47400+ 102; { pty: set/clr usr cntl mode }
  444. TIOCSTAT =IOCTLVOID+$7400+ 101; { simulate ^T status message }
  445. // UIOCCMD(n) _IO('u', n) { usr cntl op "n" }
  446. TIOCSCONS =IOCTLWRITE+$47400+ 99; { 4.2 compatibility } // added from ttycom.h
  447. TIOCCONS =IOCTLWRITE+$47400+ 98; { become virtual console }
  448. TIOCSCTTY =IOCTLVOID+$7400+ 97; { become controlling tty }
  449. TIOCEXT =IOCTLWRITE+$47400+ 96; { pty: external processing }
  450. TIOCSIG =IOCTLVOID+$7400+ 95; { pty: generate signal }
  451. TIOCDRAIN =IOCTLVOID+$7400+ 94; { wait till output drained }
  452. TIOCMSDTRWAIT =IOCTLWRITE+$47400+ 91; { modem: set wait on close }
  453. TIOCMGDTRWAIT =IOCTLREAD+$47400+ 90; { modem: get wait on close }
  454. TIOCTIMESTAMP =IOCTLREAD+$87400+ 89; { enable/get timestamp
  455. * of last input event }
  456. TIOCDCDTIMESTAMP =IOCTLREAD+$87400+ 88; { enable/get timestamp
  457. * of last DCd rise }
  458. TIOCSDRAINWAIT =IOCTLWRITE+$47400+ 87; { set ttywait timeout }
  459. TIOCGDRAINWAIT =IOCTLREAD+$47400+ 86; { get ttywait timeout }
  460. TIOCDSIMICROCODE =IOCTLREAD+$47400+ 85; { download microcode to DSI Softmodem } // added from ttycom.h
  461. TTYDISC =0; { termios tty line discipline }
  462. TABLDISC =3; { tablet discipline } // added from ttycom.h
  463. SLIPDISC =4; { serial IP discipline }
  464. PPPDISC =5; { PPP discipline }
  465. NETGRAPHDISC =6; { Netgraph tty node discipline }
  466. {
  467. * Defaults on "first" open.
  468. }
  469. TTYDEF_IFLAG =(BRKINT or ICRNL or IMAXBEL or IXON or IXANY);
  470. TTYDEF_OFLAG =(OPOST or ONLCR);
  471. TTYDEF_LFLAG =(ECHO or ICANON or ISIG or IEXTEN or ECHOE or ECHOKE or ECHOCTL);
  472. TTYDEF_CFLAG =(CREAD or CS8 or HUPCL);
  473. TTYDEF_SPEED =(B9600);
  474. {
  475. * Control Character Defaults
  476. }
  477. CtrlMask = $1f; {\037}
  478. CEOF =chr( ORD('d') and CtrlMask);
  479. CEOL =chr( $ff and CtrlMask);{ XXX avoid _POSIX_VDISABLE }
  480. CERASE =chr( $7F and CtrlMask);
  481. CINTR =chr(ORD('c') and CtrlMask);
  482. CSTATUS =chr(ORD('t') and CtrlMask);
  483. CKILL =chr(ORD('u') and CtrlMask);
  484. CMIN =chr(1);
  485. CQUIT =chr(034 and CtrlMask); { FS, ^\ }
  486. CSUSP =chr(ORD('z') and CtrlMask);
  487. CTIME =chr(0);
  488. CDSUSP =chr(ORD('y') and CtrlMask);
  489. CSTART =chr(ORD('q') and CtrlMask);
  490. CSTOP =chr(ORD('s') and CtrlMask);
  491. CLNEXT =chr(ORD('v') and CtrlMask);
  492. CDISCARD =chr(ORD('o') and CtrlMask);
  493. CWERASE =chr(ORD('w') and CtrlMask);
  494. CREPRINT =chr(ORD('r') and CtrlMask);
  495. CEOT =CEOF;
  496. { compat }
  497. CBRK =CEOL;
  498. CRPRNT =CREPRINT;
  499. CFLUSH =CDISCARD;
  500. {
  501. * TTYDEFCHARS to include an array of default control characters.
  502. }
  503. ttydefchars : array[0..NCCS-1] OF char =(
  504. CEOF, CEOL, CEOL, CERASE, CWERASE, CKILL, CREPRINT,
  505. chr(_POSIX_VDISABLE), CINTR, CQUIT, CSUSP, CDSUSP, CSTART, CSTOP, CLNEXT,
  506. CDISCARD, CMIN, CTIME, CSTATUS, chr(_POSIX_VDISABLE));
  507. {$endif}
  508. {
  509. $Log$
  510. Revision 1.2 2004-02-05 14:00:45 jonas
  511. + some declarations added from other bsds and /usr/include/sys/termios.h
  512. to termios.inc and termiosproc.inc (by Karl-Michael Schindler)
  513. + added crt, mouse (because required by keyboard), keyboard, termio,
  514. console to Darwin makefile (thanks to the above they now compile,
  515. functionality untested)
  516. * fixed wrong dependency for sysconst unit (it was always recompiled)
  517. Revision 1.1 2004/01/04 20:05:38 jonas
  518. * first working version of the Darwin/Mac OS X (for PowerPC) RTL
  519. Several non-essential units are still missing, but make cycle works
  520. }