diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 1998-04-19 06:47:25 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1998-04-19 06:47:25 +0000 |
| commit | 3f643d87bbce2c3c5ebe21d3ab44bd93792b31b9 (patch) | |
| tree | 1cabb9fb6008ff25bd6ccdff5a6430c982161c86 /include | |
| parent | 823833f19df1eed41eff6f44c072a704ff55b1c6 (diff) | |
Notes
Diffstat (limited to 'include')
| -rw-r--r-- | include/time.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/time.h b/include/time.h index 3ef83609f672..a2a89c7932ed 100644 --- a/include/time.h +++ b/include/time.h @@ -128,8 +128,8 @@ size_t strftime __P((char *, size_t, const char *, const struct tm *)); time_t time __P((time_t *)); #ifdef _THREAD_SAFE -int asctime_r __P((const struct tm *, char *, int)); -int ctime_r __P((const time_t *, char *, int)); +char *asctime_r __P((const struct tm *, char *)); +char *ctime_r __P((const time_t *, char *)); struct tm *gmtime_r __P((const time_t *, struct tm *)); struct tm *localtime_r __P((const time_t *, struct tm *)); #endif |
