changeset 198:3227c5316260

Update links and add some more spec comments.
author Rob Landley <rob@landley.net>
date Tue, 11 Dec 2007 15:41:31 -0600
parents 571623c6765d
children 3f8c97fd1f93
files toys/echo.c toys/false.c toys/sleep.c toys/touch.c toys/toysh.c toys/true.c
diffstat 6 files changed, 11 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/toys/echo.c	Sun Dec 09 15:35:42 2007 -0600
+++ b/toys/echo.c	Tue Dec 11 15:41:31 2007 -0600
@@ -2,7 +2,7 @@
 /*
  * echo.c - echo supporting -n and -e.
  *
- * See http://www.opengroup.org/onlinepubs/007904975/utilities/echo.html
+ * See http://www.opengroup.org/onlinepubs/009695399/utilities/echo.html
  */
 
 #include "toys.h"
--- a/toys/false.c	Sun Dec 09 15:35:42 2007 -0600
+++ b/toys/false.c	Tue Dec 11 15:41:31 2007 -0600
@@ -2,7 +2,7 @@
 /*
  * false.c - Return nonzero.
  *
- * See http://www.opengroup.org/onlinepubs/007904975/utilities/false.html
+ * See http://www.opengroup.org/onlinepubs/009695399/utilities/false.html
  */
 
 #include "toys.h"
--- a/toys/sleep.c	Sun Dec 09 15:35:42 2007 -0600
+++ b/toys/sleep.c	Tue Dec 11 15:41:31 2007 -0600
@@ -2,7 +2,7 @@
 /*
  * sleep.c - Wait for a number of seconds.
  *
- * See http://www.opengroup.org/onlinepubs/007904975/utilities/sleep.html
+ * See http://www.opengroup.org/onlinepubs/009695399/utilities/sleep.html
  */
 
 #include "toys.h"
--- a/toys/touch.c	Sun Dec 09 15:35:42 2007 -0600
+++ b/toys/touch.c	Tue Dec 11 15:41:31 2007 -0600
@@ -4,7 +4,7 @@
  *
  * Copyright (C) 2007 Charlie Shepherd <masterdriverz@gentoo.org>
  *
- * See http://www.opengroup.org/onlinepubs/007904975/utilities/touch.html
+ * See http://www.opengroup.org/onlinepubs/009695399/utilities/touch.html
  */
 
 #define _XOPEN_SOURCE 600
--- a/toys/toysh.c	Sun Dec 09 15:35:42 2007 -0600
+++ b/toys/toysh.c	Tue Dec 11 15:41:31 2007 -0600
@@ -6,10 +6,13 @@
  *
  * The spec for this is at:
  * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
- * and
- * http://www.opengroup.org/onlinepubs/007904975/utilities/sh.html
+ * and http://www.opengroup.org/onlinepubs/009695399/utilities/sh.html
  *
- * Although things like the bash man page are good to read too.
+ * There are also specs for:
+ * http://www.opengroup.org/onlinepubs/009695399/utilities/cd.html
+ * http://www.opengroup.org/onlinepubs/009695399/utilities/exit.html
+ *
+ * Things like the bash man page are good to read too.
  */
 
 // Handle embedded NUL bytes in the command line.
--- a/toys/true.c	Sun Dec 09 15:35:42 2007 -0600
+++ b/toys/true.c	Tue Dec 11 15:41:31 2007 -0600
@@ -2,7 +2,7 @@
 /*
  * true.c - Return zero.
  *
- * See http://www.opengroup.org/onlinepubs/007904975/utilities/true.html
+ * See http://www.opengroup.org/onlinepubs/009695399/utilities/true.html
  */
 
 #include "toys.h"