diff --git a/newctime.3 b/newctime.3 index 98faec6..48e7729 100644 --- a/newctime.3 +++ b/newctime.3 @@ -10,7 +10,7 @@ asctime, ctime, difftime, gmtime, localtime, mktime \- convert date and time to .B #include .PP .B char *ctime(clock) -.B time_t *clock; +.B const time_t *clock; .PP .B double difftime(time1, time0) .B time_t time1; @@ -19,13 +19,13 @@ asctime, ctime, difftime, gmtime, localtime, mktime \- convert date and time to .B #include .PP .B char *asctime(tm) -.B struct tm *tm; +.B const struct tm *tm; .PP .B struct tm *localtime(clock) -.B long *clock; +.B const time_t *clock; .PP .B struct tm *gmtime(clock) -.B long *clock; +.B const time_t *clock; .PP .B time_t mktime(tm) .B struct tm *tm;