diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2006-02-18 21:54:18 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2006-02-18 21:54:18 +0000 |
commit | 5f50945fa963bcbb2a85a9a31a6cd5434c8fa835 (patch) | |
tree | a95882f2e211521425ae2b1f4be950ed7c92c498 /lib/libc/time/private.h | |
parent | 0c56dc52204d19c05046dcc3e47ba5387d3924e9 (diff) |
Update to tzcode2006a; primarily just cast and const fixes.
Diffstat (limited to 'lib/libc/time/private.h')
-rw-r--r-- | lib/libc/time/private.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/time/private.h b/lib/libc/time/private.h index 8f8c737e870..8acebd17725 100644 --- a/lib/libc/time/private.h +++ b/lib/libc/time/private.h @@ -1,11 +1,11 @@ -/* $OpenBSD: private.h,v 1.17 2005/07/05 13:40:51 millert Exp $ */ +/* $OpenBSD: private.h,v 1.18 2006/02/18 21:54:17 millert Exp $ */ #ifndef PRIVATE_H #define PRIVATE_H /* ** This file is in the public domain, so clarified as of -** 1996-06-05 by Arthur David Olson (arthur_david_olson@nih.gov). +** 1996-06-05 by Arthur David Olson. */ /* OpenBSD defaults */ @@ -233,7 +233,7 @@ char * imalloc P((int n)); void * irealloc P((void * pointer, int size)); void icfree P((char * pointer)); void ifree P((char * pointer)); -char * scheck P((const char *string, char *format)); +const char *scheck P((const char *string, const char *format)); /* ** Finally, some convenience items. |