Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/time/ctime.c')
-rw-r--r--newlib/libc/time/ctime.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/newlib/libc/time/ctime.c b/newlib/libc/time/ctime.c
index 63954c640..e8ccc144a 100644
--- a/newlib/libc/time/ctime.c
+++ b/newlib/libc/time/ctime.c
@@ -12,16 +12,15 @@ INDEX
ANSI_SYNOPSIS
#include <time.h>
- char *ctime(const time_t *<[clock]>);
- char *ctime_r(const time_t *<[clock]>, char *<[buf]>);
+ char *ctime(time_t <[clock]>);
+ char *ctime_r(time_t <[clock]>, char *<[buf]>);
TRAD_SYNOPSIS
#include <time.h>
char *ctime(<[clock]>)
- time_t *<[clock]>;
-
+ time_t <[clock]>;
char *ctime_r(<[clock]>, <[buf]>)
- time_t *<[clock]>;
+ time_t <[clock]>;
char *<[buf]>;
DESCRIPTION