Changeset 145 for trunk/orca/files.c
- Timestamp:
- 05/11/06 15:55:43 (3 years ago)
- Files:
-
- 1 modified
-
trunk/orca/files.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/files.c
r144 r145 259 259 OR_NATIVE( orReadNative ) 260 260 { 261 if( a1->type == OT_FILE)261 if( orIs(a1, OT_FILE) ) 262 262 { 263 263 int n; … … 275 275 else if( n == 1 ) 276 276 { 277 // TODO: Hold a1 from GC (or copy fn).278 277 orReadDir( a1, fn ); 279 278 } … … 365 364 } 366 365 } 367 else if( a1->type == OT_PORT)366 else if( orIs(a1, OT_PORT) ) 368 367 { 369 368 OArray* arr = &orEnv->devices; … … 541 540 542 541 543 OR_NATIVE ( orDecompressNative )542 OR_NATIVE_PUB( orDecompressNative ) 544 543 { 545 544 #define BUF_LOW 32
