Module Name: src Committed By: jruoho Date: Wed Jun 8 05:31:43 UTC 2011
Modified Files: src/tests/lib/libc/stdlib: t_strtol.c Log Message: Adjust types. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/tests/lib/libc/stdlib/t_strtol.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/tests/lib/libc/stdlib/t_strtol.c diff -u src/tests/lib/libc/stdlib/t_strtol.c:1.3 src/tests/lib/libc/stdlib/t_strtol.c:1.4 --- src/tests/lib/libc/stdlib/t_strtol.c:1.3 Sun Jun 5 13:51:46 2011 +++ src/tests/lib/libc/stdlib/t_strtol.c Wed Jun 8 05:31:43 2011 @@ -1,4 +1,4 @@ -/* $NetBSD: t_strtol.c,v 1.3 2011/06/05 13:51:46 jruoho Exp $ */ +/* $NetBSD: t_strtol.c,v 1.4 2011/06/08 05:31:43 jruoho Exp $ */ /*- * Copyright (c) 2011 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: t_strtol.c,v 1.3 2011/06/05 13:51:46 jruoho Exp $"); +__RCSID("$NetBSD: t_strtol.c,v 1.4 2011/06/08 05:31:43 jruoho Exp $"); #include <atf-c.h> #include <errno.h> @@ -40,7 +40,7 @@ struct test { const char *str; - long long int res; + int64_t res; int base; const char *end; };