Changeset 7917 in project
- Timestamp:
- 01/24/08 08:51:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
chicken/trunk/posixunix.scm
r7864 r7917 367 367 #define C_set_groups(n) C_fix(setgroups(C_unfix(n), C_groups)) 368 368 369 #ifdef TIOCGWINSZ 369 370 static int get_tty_size(int p, int *rows, int *cols) 370 371 { … … 381 382 return r; 382 383 } 384 #else 385 static int get_tty_size(int p, int *rows, int *cols) 386 { 387 *rows = *cols = 0; 388 return -1; 389 } 390 #endif 383 391 384 392 EOF
Note: See TracChangeset
for help on using the changeset viewer.