pike.git/
src/
operators.c
Branch:
Tag:
Non-build tags
All tags
No tags
2014-11-01
2014-11-01 02:28:40 by Martin Nilsson <nilsson@opera.com>
636bc5939fa5c6a5bec5a59f590625ee4da91f12 (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
8.1
register is irrelevant for all modern compilers. Removed from non 3rd party source.
447:
{ INT_TYPE org; char buf[MAX_INT_SPRINTF_LEN];
-
register
char*b = buf+sizeof buf-1;
-
register
unsigned INT_TYPE i;
+
char
*b = buf+sizeof buf-1;
+
unsigned INT_TYPE i;
org = sp[-1].u.integer; *b-- = '\0'; i = org;