home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / gnu / shellutils-1.9.4-src.lha / src / diffs / shellutils-1.9.4.diffs
Encoding:
Text File  |  1994-02-22  |  16.8 KB  |  598 lines

  1. diff -rc shellutils-1.9.4-fsf/INSTALL shellutils-1.9.4-amiga/INSTALL
  2. *** shellutils-1.9.4-fsf/INSTALL    Wed Sep 15 23:05:10 1993
  3. --- shellutils-1.9.4-amiga/INSTALL    Mon Feb 21 21:58:46 1994
  4. ***************
  5. *** 35,42 ****
  6.   where DIR is the directory that contains the source code.
  7.   
  8.      By default, `make install' will install the package's files in
  9. ! `/usr/local/bin', `/usr/local/man', etc.  You can specify an
  10. ! installation prefix other than `/usr/local' by giving `configure' the
  11.   option `--prefix=PATH'.  Alternately, you can do so by consistently
  12.   giving a value for the `prefix' variable when you run `make', e.g.,
  13.        make prefix=/usr/gnu
  14. --- 35,42 ----
  15.   where DIR is the directory that contains the source code.
  16.   
  17.      By default, `make install' will install the package's files in
  18. ! `/gnu/bin', `/gnu/man', etc.  You can specify an
  19. ! installation prefix other than `/gnu' by giving `configure' the
  20.   option `--prefix=PATH'.  Alternately, you can do so by consistently
  21.   giving a value for the `prefix' variable when you run `make', e.g.,
  22.        make prefix=/usr/gnu
  23. diff -rc shellutils-1.9.4-fsf/Makefile.in shellutils-1.9.4-amiga/Makefile.in
  24. *** shellutils-1.9.4-fsf/Makefile.in    Sun Feb 20 01:11:56 1994
  25. --- shellutils-1.9.4-amiga/Makefile.in    Mon Feb 21 22:01:24 1994
  26. ***************
  27. *** 25,31 ****
  28.   srcdir = @srcdir@
  29.   VPATH = @srcdir@
  30.   
  31. ! prefix = /usr/local
  32.   exec_prefix = $(prefix)
  33.   bindir = $(exec_prefix)/bin
  34.   libdir = $(exec_prefix)/lib
  35. --- 25,31 ----
  36.   srcdir = @srcdir@
  37.   VPATH = @srcdir@
  38.   
  39. ! prefix = /gnu
  40.   exec_prefix = $(prefix)
  41.   bindir = $(exec_prefix)/bin
  42.   libdir = $(exec_prefix)/lib
  43. ***************
  44. *** 38,45 ****
  45.   NEWS configure configure.in config.h.in acconfig.h mkinstalldirs install.sh
  46.   
  47.   # Redundant stuff for making only selected programs.
  48. ! PROGS = basename date dirname echo env expr false groups id logname \
  49. ! pathchk printenv printf sleep tee test true tty who whoami yes @PROGS@
  50.   
  51.   # Subdirectories to run make in for the primary targets.
  52.   SUBDIRS = lib src man
  53. --- 38,45 ----
  54.   NEWS configure configure.in config.h.in acconfig.h mkinstalldirs install.sh
  55.   
  56.   # Redundant stuff for making only selected programs.
  57. ! PROGS = basename date dirname echo env expr id logname \
  58. ! pathchk printenv printf sleep tee test whoami yes @PROGS@
  59.   
  60.   # Subdirectories to run make in for the primary targets.
  61.   SUBDIRS = lib src man
  62. ***************
  63. *** 57,63 ****
  64.   check:
  65.   installcheck:
  66.   
  67. ! $(PROGS) su:
  68.       cd lib; $(MAKE) all
  69.       cd src; $(MAKE) $@
  70.   
  71. --- 57,63 ----
  72.   check:
  73.   installcheck:
  74.   
  75. ! $(PROGS):
  76.       cd lib; $(MAKE) all
  77.       cd src; $(MAKE) $@
  78.   
  79. diff -rc shellutils-1.9.4-fsf/configure shellutils-1.9.4-amiga/configure
  80. *** shellutils-1.9.4-fsf/configure    Thu Feb 10 14:59:49 1994
  81. --- shellutils-1.9.4-amiga/configure    Mon Feb 21 22:17:54 1994
  82. ***************
  83. *** 102,108 ****
  84.     srcdirdefaulted=yes
  85.     # Try the directory containing this script, then `..'.
  86.     prog=$0
  87. !   confdir=`echo $prog|sed 's%/[^/][^/]*$%%'`
  88.     test "X$confdir" = "X$prog" && confdir=.
  89.     srcdir=$confdir
  90.     if test ! -r $srcdir/$unique_file; then
  91. --- 102,108 ----
  92.     srcdirdefaulted=yes
  93.     # Try the directory containing this script, then `..'.
  94.     prog=$0
  95. !   confdir=`echo $prog| sed 's|/$||' | sed 's|//|/|' | sed 's|/[^/]*$||'`
  96.     test "X$confdir" = "X$prog" && confdir=.
  97.     srcdir=$confdir
  98.     if test ! -r $srcdir/$unique_file; then
  99. ***************
  100. *** 131,136 ****
  101. --- 131,138 ----
  102.   
  103.   
  104.   # We want these before the checks, so the checks can modify their values.
  105. + CFLAGS="-O2"    #HACK (fnf)
  106. + LDFLAGS=""    #HACK (fnf)
  107.   test -z "$CFLAGS" && CFLAGS=-g auto_cflags=1
  108.   
  109.   if test -z "$CC"; then
  110. ***************
  111. *** 415,421 ****
  112.   
  113.   echo checking for POSIXized ISC
  114.   if test -d /etc/conf/kconfig.d &&
  115. !   grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
  116.   then
  117.     ISC=1 # If later tests want to check for ISC.
  118.     
  119. --- 417,423 ----
  120.   
  121.   echo checking for POSIXized ISC
  122.   if test -d /etc/conf/kconfig.d &&
  123. !   grep _POSIX_VERSION /gnu/include/sys/unistd.h >/dev/null 2>&1
  124.   then
  125.     ISC=1 # If later tests want to check for ISC.
  126.     
  127. ***************
  128. *** 1001,1007 ****
  129.   EOF
  130.   if eval $compile; then
  131.     rm -rf conftest*
  132. !   PROGS="$PROGS nice nohup" MAN="$MAN nice.1 nohup.1"
  133.   
  134.   fi
  135.   rm -f conftest*
  136. --- 1003,1009 ----
  137.   EOF
  138.   if eval $compile; then
  139.     rm -rf conftest*
  140. !   PROGS="$PROGS nice" MAN="$MAN nice.1"
  141.   
  142.   fi
  143.   rm -f conftest*
  144. ***************
  145. *** 1029,1035 ****
  146.   \${SEDeA}NICE_PRIORITY\${SEDeB}NICE_PRIORITY\${SEDeC}1\${SEDeD}
  147.   "
  148.   }
  149. !  PROGS="$PROGS nice nohup" MAN="$MAN nice.1 nohup.1"
  150.   
  151.   fi
  152.   rm -f conftest*
  153. --- 1031,1037 ----
  154.   \${SEDeA}NICE_PRIORITY\${SEDeB}NICE_PRIORITY\${SEDeC}1\${SEDeD}
  155.   "
  156.   }
  157. !  PROGS="$PROGS nice" MAN="$MAN nice.1"
  158.   
  159.   fi
  160.   rm -f conftest*
  161. ***************
  162. *** 1139,1145 ****
  163.   rm -f conftest*
  164.   
  165.   if test -n "$have_termios"; then
  166. ! PROGS="$PROGS stty" MAN="$MAN stty.1"
  167.   echo checking for c_line in struct termios
  168.   cat > conftest.c <<EOF
  169.   #include "confdefs.h"
  170. --- 1141,1147 ----
  171.   rm -f conftest*
  172.   
  173.   if test -n "$have_termios"; then
  174. ! PROGS="$PROGS" MAN="$MAN"
  175.   echo checking for c_line in struct termios
  176.   cat > conftest.c <<EOF
  177.   #include "confdefs.h"
  178. diff -rc shellutils-1.9.4-fsf/lib/getusershell.c shellutils-1.9.4-amiga/lib/getusershell.c
  179. *** shellutils-1.9.4-fsf/lib/getusershell.c    Sun Oct 17 03:38:20 1993
  180. --- shellutils-1.9.4-amiga/lib/getusershell.c    Mon Feb 21 21:59:58 1994
  181. ***************
  182. *** 50,56 ****
  183.   /* List of shells to use if the shells file is missing. */
  184.   static char const* const default_shells[] =
  185.   {
  186. !   "/bin/sh", "/bin/csh", "/usr/bin/sh", "/usr/bin/csh", NULL
  187.   };
  188.   
  189.   /* Index of the next shell in `default_shells' to return.
  190. --- 50,56 ----
  191.   /* List of shells to use if the shells file is missing. */
  192.   static char const* const default_shells[] =
  193.   {
  194. !   "/bin/sh", "/bin/ksh", "/bin/bash", NULL
  195.   };
  196.   
  197.   /* Index of the next shell in `default_shells' to return.
  198. diff -rc shellutils-1.9.4-fsf/man/Makefile.in shellutils-1.9.4-amiga/man/Makefile.in
  199. *** shellutils-1.9.4-fsf/man/Makefile.in    Tue Feb  1 14:14:23 1994
  200. --- shellutils-1.9.4-amiga/man/Makefile.in    Mon Feb 21 22:00:10 1994
  201. ***************
  202. *** 20,26 ****
  203.   srcdir = @srcdir@
  204.   VPATH = @srcdir@
  205.   
  206. ! prefix = /usr/local
  207.   exec_prefix = $(prefix)
  208.   mandir = $(prefix)/man/man1
  209.   manprefix = $(binprefix)
  210. --- 20,26 ----
  211.   srcdir = @srcdir@
  212.   VPATH = @srcdir@
  213.   
  214. ! prefix = /gnu
  215.   exec_prefix = $(prefix)
  216.   mandir = $(prefix)/man/man1
  217.   manprefix = $(binprefix)
  218. diff -rc shellutils-1.9.4-fsf/src/Makefile.in shellutils-1.9.4-amiga/src/Makefile.in
  219. *** shellutils-1.9.4-fsf/src/Makefile.in    Mon Feb 14 21:42:07 1994
  220. --- shellutils-1.9.4-amiga/src/Makefile.in    Mon Feb 21 22:01:18 1994
  221. ***************
  222. *** 20,26 ****
  223.   srcdir = @srcdir@
  224.   VPATH = @srcdir@
  225.   
  226. ! prefix = /usr/local
  227.   exec_prefix = $(prefix)
  228.   bindir = $(exec_prefix)/bin
  229.   binprefix = 
  230. --- 20,26 ----
  231.   srcdir = @srcdir@
  232.   VPATH = @srcdir@
  233.   
  234. ! prefix = /gnu
  235.   exec_prefix = $(prefix)
  236.   bindir = $(exec_prefix)/bin
  237.   binprefix = 
  238. ***************
  239. *** 44,53 ****
  240.   DISTFILES = Makefile.in system.h $(SOURCES) groups.sh nohup.sh \
  241.   false.sh true.sh version.h long-options.h
  242.   
  243. ! PROGS = basename date dirname echo env expr false groups id logname \
  244. ! pathchk printenv printf sleep tee test true tty who whoami yes @PROGS@
  245.   
  246. ! all: $(PROGS) su
  247.   
  248.   incl = -I.. -I$(srcdir) -I$(srcdir)/../lib
  249.   .c.o:
  250. --- 44,53 ----
  251.   DISTFILES = Makefile.in system.h $(SOURCES) groups.sh nohup.sh \
  252.   false.sh true.sh version.h long-options.h
  253.   
  254. ! PROGS = basename date dirname echo env expr id logname \
  255. ! pathchk printenv printf sleep tee test whoami yes @PROGS@
  256.   
  257. ! all: $(PROGS)
  258.   
  259.   incl = -I.. -I$(srcdir) -I$(srcdir)/../lib
  260.   .c.o:
  261. ***************
  262. *** 58,64 ****
  263.           $(INSTALL_PROGRAM) $$f $(bindir)/$(binprefix)$$f; \
  264.       done
  265.       rm -f $(bindir)/'['; ln $(bindir)/$(binprefix)test $(bindir)/'['
  266. !     @if test `./id -u` = 0; then \
  267.       echo you are root, so installing su; \
  268.       $(INSTALL_PROGRAM) su $(bindir)/$(binprefix)su; \
  269.       chown root $(bindir)/$(binprefix)su; \
  270. --- 58,64 ----
  271.           $(INSTALL_PROGRAM) $$f $(bindir)/$(binprefix)$$f; \
  272.       done
  273.       rm -f $(bindir)/'['; ln $(bindir)/$(binprefix)test $(bindir)/'['
  274. !     @if false; then \
  275.       echo you are root, so installing su; \
  276.       $(INSTALL_PROGRAM) su $(bindir)/$(binprefix)su; \
  277.       chown root $(bindir)/$(binprefix)su; \
  278. ***************
  279. *** 66,72 ****
  280.       else echo WARNING: you are not root, so not installing su; fi
  281.   
  282.   uninstall:
  283. !     for f in $(PROGS) su; do rm -f $(bindir)/$(binprefix)$$f; done
  284.       rm -f $(bindir)/'['
  285.   
  286.   TAGS: $(SOURCES)
  287. --- 66,72 ----
  288.       else echo WARNING: you are not root, so not installing su; fi
  289.   
  290.   uninstall:
  291. !     for f in $(PROGS); do rm -f $(bindir)/$(binprefix)$$f; done
  292.       rm -f $(bindir)/'['
  293.   
  294.   TAGS: $(SOURCES)
  295. diff -rc shellutils-1.9.4-fsf/src/basename.c shellutils-1.9.4-amiga/src/basename.c
  296. *** shellutils-1.9.4-fsf/src/basename.c    Mon Feb 14 21:23:15 1994
  297. --- shellutils-1.9.4-amiga/src/basename.c    Mon Feb 21 21:50:03 1994
  298. ***************
  299. *** 73,79 ****
  300.     exit (status);
  301.   }
  302.   
  303. - void
  304.   main (argc, argv)
  305.        int argc;
  306.        char **argv;
  307. --- 73,78 ----
  308. diff -rc shellutils-1.9.4-fsf/src/date.c shellutils-1.9.4-amiga/src/date.c
  309. *** shellutils-1.9.4-fsf/src/date.c    Tue Feb  1 14:10:33 1994
  310. --- shellutils-1.9.4-amiga/src/date.c    Mon Feb 21 21:50:05 1994
  311. ***************
  312. *** 109,115 ****
  313.     {NULL, 0, NULL, 0}
  314.   };
  315.   
  316. - void
  317.   main (argc, argv)
  318.        int argc;
  319.        char **argv;
  320. --- 109,114 ----
  321. diff -rc shellutils-1.9.4-fsf/src/dirname.c shellutils-1.9.4-amiga/src/dirname.c
  322. *** shellutils-1.9.4-fsf/src/dirname.c    Mon Feb 14 21:23:16 1994
  323. --- shellutils-1.9.4-amiga/src/dirname.c    Mon Feb 21 21:50:06 1994
  324. ***************
  325. *** 62,68 ****
  326.     exit (status);
  327.   }
  328.   
  329. - void
  330.   main (argc, argv)
  331.        int argc;
  332.        char **argv;
  333. --- 62,67 ----
  334. diff -rc shellutils-1.9.4-fsf/src/echo.c shellutils-1.9.4-amiga/src/echo.c
  335. *** shellutils-1.9.4-fsf/src/echo.c    Tue Feb  1 14:10:34 1994
  336. --- shellutils-1.9.4-amiga/src/echo.c    Mon Feb 21 21:50:07 1994
  337. ***************
  338. *** 110,116 ****
  339.   /* Print the words in LIST to standard output.  If the first word is
  340.      `-n', then don't print a trailing newline.  We also support the
  341.      echo syntax from Version 9 unix systems. */
  342. ! void
  343.   main (argc, argv)
  344.        int argc;
  345.        char **argv;
  346. --- 110,116 ----
  347.   /* Print the words in LIST to standard output.  If the first word is
  348.      `-n', then don't print a trailing newline.  We also support the
  349.      echo syntax from Version 9 unix systems. */
  350.   main (argc, argv)
  351.        int argc;
  352.        char **argv;
  353. diff -rc shellutils-1.9.4-fsf/src/env.c shellutils-1.9.4-amiga/src/env.c
  354. *** shellutils-1.9.4-fsf/src/env.c    Tue Feb  1 14:10:35 1994
  355. --- shellutils-1.9.4-amiga/src/env.c    Mon Feb 21 21:50:08 1994
  356. ***************
  357. *** 121,127 ****
  358.     {NULL, 0, NULL, 0}
  359.   };
  360.   
  361. - void
  362.   main (argc, argv, envp)
  363.        register int argc;
  364.        register char **argv;
  365. --- 121,126 ----
  366. diff -rc shellutils-1.9.4-fsf/src/expr.c shellutils-1.9.4-amiga/src/expr.c
  367. *** shellutils-1.9.4-fsf/src/expr.c    Wed Dec 22 21:53:24 1993
  368. --- shellutils-1.9.4-amiga/src/expr.c    Mon Feb 21 21:50:10 1994
  369. ***************
  370. *** 169,175 ****
  371.     exit (status);
  372.   }
  373.   
  374. - void
  375.   main (argc, argv)
  376.        int argc;
  377.        char **argv;
  378. --- 169,174 ----
  379. diff -rc shellutils-1.9.4-fsf/src/id.c shellutils-1.9.4-amiga/src/id.c
  380. *** shellutils-1.9.4-fsf/src/id.c    Tue Feb  1 14:10:36 1994
  381. --- shellutils-1.9.4-amiga/src/id.c    Mon Feb 21 21:50:11 1994
  382. ***************
  383. *** 112,118 ****
  384.     {NULL, 0, NULL, 0}
  385.   };
  386.   
  387. - void
  388.   main (argc, argv)
  389.        int argc;
  390.        char **argv;
  391. --- 112,117 ----
  392. diff -rc shellutils-1.9.4-fsf/src/logname.c shellutils-1.9.4-amiga/src/logname.c
  393. *** shellutils-1.9.4-fsf/src/logname.c    Tue Feb  1 14:10:37 1994
  394. --- shellutils-1.9.4-amiga/src/logname.c    Mon Feb 21 21:50:12 1994
  395. ***************
  396. *** 68,74 ****
  397.     exit (status);
  398.   }
  399.   
  400. - void
  401.   main (argc, argv)
  402.        int argc;
  403.        char **argv;
  404. --- 68,73 ----
  405. diff -rc shellutils-1.9.4-fsf/src/nice.c shellutils-1.9.4-amiga/src/nice.c
  406. *** shellutils-1.9.4-fsf/src/nice.c    Tue Feb  1 14:10:39 1994
  407. --- shellutils-1.9.4-amiga/src/nice.c    Mon Feb 21 21:50:13 1994
  408. ***************
  409. *** 67,73 ****
  410.     {NULL, 0, NULL, 0}
  411.   };
  412.   
  413. - void
  414.   main (argc, argv)
  415.        int argc;
  416.        char **argv;
  417. --- 67,72 ----
  418. diff -rc shellutils-1.9.4-fsf/src/pathchk.c shellutils-1.9.4-amiga/src/pathchk.c
  419. *** shellutils-1.9.4-fsf/src/pathchk.c    Tue Feb  1 14:10:40 1994
  420. --- shellutils-1.9.4-amiga/src/pathchk.c    Mon Feb 21 21:50:15 1994
  421. ***************
  422. *** 123,129 ****
  423.     {NULL, 0, NULL, 0}
  424.   };
  425.   
  426. - void
  427.   main (argc, argv)
  428.        int argc;
  429.        char **argv;
  430. --- 123,128 ----
  431. diff -rc shellutils-1.9.4-fsf/src/printenv.c shellutils-1.9.4-amiga/src/printenv.c
  432. *** shellutils-1.9.4-fsf/src/printenv.c    Tue Feb  1 14:10:40 1994
  433. --- shellutils-1.9.4-amiga/src/printenv.c    Mon Feb 21 21:50:16 1994
  434. ***************
  435. *** 86,92 ****
  436.     exit (status);
  437.   }
  438.   
  439. - void
  440.   main (argc, argv)
  441.        int argc;
  442.        char **argv;
  443. --- 86,91 ----
  444. diff -rc shellutils-1.9.4-fsf/src/printf.c shellutils-1.9.4-amiga/src/printf.c
  445. *** shellutils-1.9.4-fsf/src/printf.c    Tue Feb  1 14:10:41 1994
  446. --- shellutils-1.9.4-amiga/src/printf.c    Mon Feb 21 21:50:17 1994
  447. ***************
  448. *** 145,151 ****
  449.     exit (status);
  450.   }
  451.   
  452. - void
  453.   main (argc, argv)
  454.        int argc;
  455.        char **argv;
  456. --- 145,150 ----
  457. diff -rc shellutils-1.9.4-fsf/src/sleep.c shellutils-1.9.4-amiga/src/sleep.c
  458. *** shellutils-1.9.4-fsf/src/sleep.c    Thu Feb 10 19:11:03 1994
  459. --- shellutils-1.9.4-amiga/src/sleep.c    Mon Feb 21 21:50:18 1994
  460. ***************
  461. *** 74,80 ****
  462.     exit (status);
  463.   }
  464.   
  465. - void
  466.   main (argc, argv)
  467.        int argc;
  468.        char **argv;
  469. --- 74,79 ----
  470. diff -rc shellutils-1.9.4-fsf/src/stty.c shellutils-1.9.4-amiga/src/stty.c
  471. *** shellutils-1.9.4-fsf/src/stty.c    Sun Feb 20 00:31:04 1994
  472. --- shellutils-1.9.4-amiga/src/stty.c    Mon Feb 21 21:50:20 1994
  473. ***************
  474. *** 623,629 ****
  475.     exit (status);
  476.   }
  477.   
  478. - void
  479.   main (argc, argv)
  480.        int argc;
  481.        char **argv;
  482. --- 623,628 ----
  483. diff -rc shellutils-1.9.4-fsf/src/su.c shellutils-1.9.4-amiga/src/su.c
  484. *** shellutils-1.9.4-fsf/src/su.c    Tue Feb  1 14:10:45 1994
  485. --- shellutils-1.9.4-amiga/src/su.c    Mon Feb 21 22:01:23 1994
  486. ***************
  487. *** 130,139 ****
  488.   #include "version.h"
  489.   
  490.   /* The default PATH for simulated logins to non-superuser accounts.  */
  491. ! #define DEFAULT_LOGIN_PATH ":/usr/ucb:/bin:/usr/bin"
  492.   
  493.   /* The default PATH for simulated logins to superuser accounts.  */
  494. ! #define DEFAULT_ROOT_LOGIN_PATH "/usr/ucb:/bin:/usr/bin:/etc"
  495.   
  496.   /* The shell to run if none is given in the user's passwd entry.  */
  497.   #define DEFAULT_SHELL "/bin/sh"
  498. --- 130,139 ----
  499.   #include "version.h"
  500.   
  501.   /* The default PATH for simulated logins to non-superuser accounts.  */
  502. ! #define DEFAULT_LOGIN_PATH ":/bin"
  503.   
  504.   /* The default PATH for simulated logins to superuser accounts.  */
  505. ! #define DEFAULT_ROOT_LOGIN_PATH "/gnu"
  506.   
  507.   /* The shell to run if none is given in the user's passwd entry.  */
  508.   #define DEFAULT_SHELL "/bin/sh"
  509. ***************
  510. *** 194,200 ****
  511.     {0, 0, 0, 0}
  512.   };
  513.   
  514. - void
  515.   main (argc, argv)
  516.        int argc;
  517.        char **argv;
  518. --- 194,199 ----
  519. diff -rc shellutils-1.9.4-fsf/src/tee.c shellutils-1.9.4-amiga/src/tee.c
  520. *** shellutils-1.9.4-fsf/src/tee.c    Tue Feb  1 14:10:46 1994
  521. --- shellutils-1.9.4-amiga/src/tee.c    Mon Feb 21 21:50:23 1994
  522. ***************
  523. *** 87,93 ****
  524.     exit (status);
  525.   }
  526.   
  527. - void
  528.   main (argc, argv)
  529.        int argc;
  530.        char **argv;
  531. --- 87,92 ----
  532. diff -rc shellutils-1.9.4-fsf/src/tty.c shellutils-1.9.4-amiga/src/tty.c
  533. *** shellutils-1.9.4-fsf/src/tty.c    Tue Feb  1 14:10:49 1994
  534. --- shellutils-1.9.4-amiga/src/tty.c    Mon Feb 21 21:50:24 1994
  535. ***************
  536. *** 65,71 ****
  537.     {NULL, 0, NULL, 0}
  538.   };
  539.   
  540. - void
  541.   main (argc, argv)
  542.        int argc;
  543.        char **argv;
  544. --- 65,70 ----
  545. diff -rc shellutils-1.9.4-fsf/src/uname.c shellutils-1.9.4-amiga/src/uname.c
  546. *** shellutils-1.9.4-fsf/src/uname.c    Tue Feb  1 14:10:50 1994
  547. --- shellutils-1.9.4-amiga/src/uname.c    Mon Feb 21 21:50:25 1994
  548. ***************
  549. *** 92,98 ****
  550.     {NULL, 0, NULL, 0}
  551.   };
  552.   
  553. - void
  554.   main (argc, argv)
  555.        int argc;
  556.        char **argv;
  557. --- 92,97 ----
  558. diff -rc shellutils-1.9.4-fsf/src/who.c shellutils-1.9.4-amiga/src/who.c
  559. *** shellutils-1.9.4-fsf/src/who.c    Tue Feb  1 14:10:51 1994
  560. --- shellutils-1.9.4-amiga/src/who.c    Mon Feb 21 21:50:27 1994
  561. ***************
  562. *** 138,144 ****
  563.     {NULL, 0, NULL, 0}
  564.   };
  565.   
  566. - void
  567.   main (argc, argv)
  568.        int argc;
  569.        char **argv;
  570. --- 138,143 ----
  571. diff -rc shellutils-1.9.4-fsf/src/whoami.c shellutils-1.9.4-amiga/src/whoami.c
  572. *** shellutils-1.9.4-fsf/src/whoami.c    Tue Feb  1 14:10:52 1994
  573. --- shellutils-1.9.4-amiga/src/whoami.c    Mon Feb 21 21:50:28 1994
  574. ***************
  575. *** 74,80 ****
  576.     exit (status);
  577.   }
  578.   
  579. - void
  580.   main (argc, argv)
  581.        int argc;
  582.        char *argv[];
  583. --- 74,79 ----
  584. diff -rc shellutils-1.9.4-fsf/src/yes.c shellutils-1.9.4-amiga/src/yes.c
  585. *** shellutils-1.9.4-fsf/src/yes.c    Tue Feb  1 14:10:52 1994
  586. --- shellutils-1.9.4-amiga/src/yes.c    Mon Feb 21 21:50:29 1994
  587. ***************
  588. *** 58,64 ****
  589.     exit (status);
  590.   }
  591.   
  592. - void
  593.   main (argc, argv)
  594.        int argc;
  595.        char **argv;
  596. --- 58,63 ----
  597.