aboutsummaryrefslogtreecommitdiffstats
path: root/man3/strftime.3
diff options
context:
space:
mode:
Diffstat (limited to 'man3/strftime.3')
-rw-r--r--man3/strftime.38
1 files changed, 4 insertions, 4 deletions
diff --git a/man3/strftime.3 b/man3/strftime.3
index 38bb8814bd..6d77faf14c 100644
--- a/man3/strftime.3
+++ b/man3/strftime.3
@@ -745,26 +745,26 @@ Result string is " 11"
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
-
+\&
int
main(int argc, char *argv[])
{
char outstr[200];
time_t t;
struct tm *tmp;
-
+\&
t = time(NULL);
tmp = localtime(&t);
if (tmp == NULL) {
perror("localtime");
exit(EXIT_FAILURE);
}
-
+\&
if (strftime(outstr, sizeof(outstr), argv[1], tmp) == 0) {
fprintf(stderr, "strftime returned 0");
exit(EXIT_FAILURE);
}
-
+\&
printf("Result string is \e"%s\e"\en", outstr);
exit(EXIT_SUCCESS);
}