home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / language / slperl.zoo / atarist / perl4035.diff < prev    next >
Text File  |  1992-07-05  |  2KB  |  94 lines

  1. *** ../atarist.dist/config.h    Tue Jun  9 14:38:43 1992
  2. --- config.h    Tue Jun  9 16:53:35 1992
  3. ***************
  4. *** 164,170 ****
  5.    *    This symbol, if defined, indicates to the C program that
  6.    *    the fcntl() function exists.
  7.    */
  8. ! /* #define    HAS_FCNTL        /**/
  9.   
  10.   /* FLEXFILENAMES
  11.    *    This symbol, if defined, indicates that the system supports filenames
  12. --- 164,172 ----
  13.    *    This symbol, if defined, indicates to the C program that
  14.    *    the fcntl() function exists.
  15.    */
  16. ! #ifdef __MINT__
  17. ! #define    HAS_FCNTL        /**/
  18. ! #endif
  19.   
  20.   /* FLEXFILENAMES
  21.    *    This symbol, if defined, indicates that the system supports filenames
  22. *** ../atarist.dist/echo.c    Tue Jun  9 14:39:02 1992
  23. --- echo.c    Tue Jun  9 16:48:01 1992
  24. ***************
  25. *** 90,98 ****
  26.       if(final_newline) putchar('\n');
  27.       return 0;
  28.   }
  29. -                   
  30. -     
  31. -     
  32. -     
  33. -     
  34. --- 90,92 ----
  35. *** ../atarist.dist/usersub.c    Tue Jun  9 14:40:59 1992
  36. --- usersub.c    Tue Jun  9 16:44:41 1992
  37. ***************
  38. *** 4,9 ****
  39. --- 4,11 ----
  40.   
  41.   int userinit()
  42.   {
  43. + #ifndef __MINT__
  44.       install_null();    /* install device /dev/null or NUL: */
  45. + #endif
  46.       return 0;
  47.   }
  48. *** ../atarist.dist/usub/makefile.st    Tue Jun  9 14:39:36 1992
  49. --- usub/makefile.st    Tue Jun  9 17:03:13 1992
  50. ***************
  51. *** 15,17 ****
  52. --- 15,23 ----
  53.   
  54.   curses.c: acurses.mus
  55.       perl mus acurses.mus >curses.c
  56. + clean:
  57. +     rm -f *.o curses.c
  58. + realclean:
  59. +     rm -f cperl.ttp report core
  60. *** ../atarist.dist/usub/acurses.mus    Tue Jun  9 14:37:44 1992
  61. --- usub/acurses.mus    Tue Jun  9 17:04:07 1992
  62. ***************
  63. *** 624,632 ****
  64.   CASE void tstp
  65.   END
  66.   
  67. ! CASE int _putchar
  68. ! I    char        ch
  69. ! END
  70.   
  71.       case US_testcallback:
  72.       sp = callback("callback", sp + items, curcsv->wantarray, 1, items);
  73. --- 624,640 ----
  74.   CASE void tstp
  75.   END
  76.   
  77. !     case US__putchar:
  78. !     if (items != 1)
  79. !         fatal("Usage: &_putchar($ch)");
  80. !     else {
  81. !         int retval;
  82. !         char    ch =        (char)        str_gnum(st[1]);
  83. !         retval = _putchar(ch, stdout);
  84. !         str_numset(st[0], (double) retval);
  85. !     }
  86. !     return sp;
  87.   
  88.       case US_testcallback:
  89.       sp = callback("callback", sp + items, curcsv->wantarray, 1, items);
  90.