summaryrefslogtreecommitdiff
path: root/manual/examples
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1992-10-19 23:24:19 +0000
committerRoland McGrath <roland@gnu.org>1992-10-19 23:24:19 +0000
commitfdde6bbe2af46d51b65297a6880148ec1f6e48dd (patch)
treeaac4689fe10c95686b324b822bdd9db5486ee0d6 /manual/examples
parent0444abedcfa1c87b9b7cdec62a4cd231b10095f4 (diff)
Add @group...@end group.
Diffstat (limited to 'manual/examples')
-rw-r--r--manual/examples/strftim.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/manual/examples/strftim.c b/manual/examples/strftim.c
index 3b27d555c4..7f95ef02ad 100644
--- a/manual/examples/strftim.c
+++ b/manual/examples/strftim.c
@@ -19,6 +19,7 @@ main (void)
/* Print out the date and time in the standard format. */
fputs (asctime (loctime), stdout);
+/*@group*/
/* Print it out in a nice format. */
strftime (buffer, SIZE, "Today is %A, %B %d.\n", loctime);
fputs (buffer, stdout);
@@ -27,3 +28,4 @@ main (void)
return 0;
}
+/*@end group*/