Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/libc/time remove register
details: https://anonhg.NetBSD.org/src/rev/fd95f33577ba
branches: trunk
changeset: 782294:fd95f33577ba
user: christos <christos%NetBSD.org@localhost>
date: Fri Oct 26 18:29:34 2012 +0000
description:
remove register
diffstat:
lib/libc/time/ialloc.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (29 lines):
diff -r 44816dc93b69 -r fd95f33577ba lib/libc/time/ialloc.c
--- a/lib/libc/time/ialloc.c Fri Oct 26 18:15:55 2012 +0000
+++ b/lib/libc/time/ialloc.c Fri Oct 26 18:29:34 2012 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ialloc.c,v 1.8 2012/10/24 00:10:03 christos Exp $ */
+/* $NetBSD: ialloc.c,v 1.9 2012/10/26 18:29:34 christos Exp $ */
/*
** This file is in the public domain, so clarified as of
** 2006-07-17 by Arthur David Olson.
@@ -13,7 +13,7 @@
#if 0
static char elsieid[] = "@(#)ialloc.c 8.30";
#else
-__RCSID("$NetBSD: ialloc.c,v 1.8 2012/10/24 00:10:03 christos Exp $");
+__RCSID("$NetBSD: ialloc.c,v 1.9 2012/10/26 18:29:34 christos Exp $");
#endif
#include "private.h"
@@ -21,8 +21,8 @@
char *
icatalloc(char *const old, const char *const new)
{
- register char * result;
- register int oldsize, newsize;
+ char * result;
+ int oldsize, newsize;
newsize = (new == NULL) ? 0 : strlen(new);
if (old == NULL)
Home |
Main Index |
Thread Index |
Old Index