print_screen_d     39 core/script.c  static int  print_screen_d = -1;        // print_screen file descriptor.
print_screen_d     45 core/script.c      if (print_screen_d >= 0) {
print_screen_d     46 core/script.c          close(print_screen_d);
print_screen_d     47 core/script.c          print_screen_d = -1;
print_screen_d     53 core/script.c      if (print_screen_d >= 0) {
print_screen_d     54 core/script.c          close(print_screen_d);
print_screen_d     55 core/script.c          print_screen_d = -1;
print_screen_d     68 core/script.c      if (print_screen_d>=0) close(print_screen_d);
print_screen_d     75 core/script.c      print_screen_d = open(print_screen_file, O_WRONLY|O_CREAT|flag_trunc, 0777);
print_screen_d     76 core/script.c      if (print_screen_d>=0) lseek(print_screen_d,0,SEEK_END);
print_screen_d     86 core/script.c      if (print_screen_p && (print_screen_d >= 0)) {
print_screen_d     89 core/script.c          write(print_screen_d, str, strlen(str) );
print_screen_d     90 core/script.c          write(print_screen_d, &nl, 1);