pike.git/
src/
builtin.cmod
Branch:
Tag:
Non-build tags
All tags
No tags
2016-01-12
2016-01-12 21:24:53 by Martin Nilsson <nilsson@fastmail.com>
f4ef46ce041473f24da72d893399be012828ebf2 (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
8.1
Remove some compat for things removed in 8.0
3259:
INIT { struct Buffer_struct *str = THIS;
-
MEMSET
( str, 0, sizeof( *str ) );
+
memset
( str, 0, sizeof( *str ) );
} EXIT
3430:
INIT {
-
MEMSET
(&THIS->ctx, 0, sizeof(struct replace_many_context));
+
memset
(&THIS->ctx, 0, sizeof(struct replace_many_context));
} EXIT