pike.git/
src/
global.h
Branch:
Tag:
Non-build tags
All tags
No tags
2014-04-27
2014-04-27 18:25:55 by Martin Nilsson <nilsson@opera.com>
0a2d766eb16b0ff3f28d3eb69d41016eff81f0b5 (
9
lines) (+
5
/-
4
)
[
Show
|
Annotate
]
Branch:
8.0
malloc now uses void*, not char*
660:
#endif #ifdef MALLOC_DECL_MISSING
-
char
*malloc PROT((int));
-
char
*realloc PROT((
char
*,int));
-
void free PROT((
char
*));
-
char
*calloc PROT((int,int));
+
void
*malloc PROT((int));
+
void
*realloc PROT((
void
*,int));
+
void free PROT((
void
*));
+
void
*calloc PROT((int,int));
#endif #ifdef GETPEERNAME_DECL_MISSING