diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-02-08 18:50:06 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-02-08 18:50:06 +0000 |
commit | 45477ef1a4fb04c7452ce4037b0629890c6c3aca (patch) | |
tree | d22394a5e216a5ecce10016901d18582e943aa23 /include/time.h | |
parent | 09c4b1f6edf5ca6901e8310da5311cce7df639ee (diff) |
strptime() proto; Andreas.Gunnarsson@emw.ericsson.se
Diffstat (limited to 'include/time.h')
-rw-r--r-- | include/time.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/time.h b/include/time.h index 2f459011ae7..75cb1c52a75 100644 --- a/include/time.h +++ b/include/time.h @@ -1,4 +1,4 @@ -/* $OpenBSD: time.h,v 1.2 1997/09/21 10:45:57 niklas Exp $ */ +/* $OpenBSD: time.h,v 1.3 1998/02/08 18:50:05 deraadt Exp $ */ /* $NetBSD: time.h,v 1.9 1994/10/26 00:56:35 cgd Exp $ */ /* @@ -93,6 +93,7 @@ struct tm *gmtime __P((const time_t *)); struct tm *localtime __P((const time_t *)); time_t mktime __P((struct tm *)); size_t strftime __P((char *, size_t, const char *, const struct tm *)); +char *strptime __P((const char *, const char *, struct tm *)); time_t time __P((time_t *)); #if !defined(_ANSI_SOURCE) |