summaryrefslogtreecommitdiffstats
path: root/lib/libc
diff options
context:
space:
mode:
authorstefanf <stefanf@FreeBSD.org>2004-06-08 12:20:40 +0000
committerstefanf <stefanf@FreeBSD.org>2004-06-08 12:20:40 +0000
commit80a3e78252e9330ed5f02cdfd742479778b7124e (patch)
tree46373d05bb851c66a874cf3e25b13799b093ea94 /lib/libc
parent95e7f6997b0f4feb7edba4d8ee6558487e14129c (diff)
downloadFreeBSD-src-80a3e78252e9330ed5f02cdfd742479778b7124e.zip
FreeBSD-src-80a3e78252e9330ed5f02cdfd742479778b7124e.tar.gz
Remove a couple of casts added for an ancient Sun compiler.
Approved by: das (mentor)
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/stdtime/localtime.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/lib/libc/stdtime/localtime.c b/lib/libc/stdtime/localtime.c
index 501930e..e5d9b37 100644
--- a/lib/libc/stdtime/localtime.c
+++ b/lib/libc/stdtime/localtime.c
@@ -1508,12 +1508,7 @@ int * const okayp;
** It's okay to guess wrong since the guess
** gets checked.
*/
- /*
- ** The (void *) casts are the benefit of SunOS 3.3 on Sun 2's.
- */
- sp = (const struct state *)
- (((void *) funcp == (void *) localsub) ?
- lclptr : gmtptr);
+ sp = (funcp == localsub) ? lclptr : gmtptr;
#ifdef ALL_STATE
if (sp == NULL)
return WRONG;
@@ -1583,11 +1578,7 @@ const long offset;
** We try to divine the type they started from and adjust to the
** type they need.
*/
- /*
- ** The (void *) casts are the benefit of SunOS 3.3 on Sun 2's.
- */
- sp = (const struct state *) (((void *) funcp == (void *) localsub) ?
- lclptr : gmtptr);
+ sp = (funcp == localsub) ? lclptr : gmtptr;
#ifdef ALL_STATE
if (sp == NULL)
return WRONG;
OpenPOWER on IntegriCloud