pike.git
/
src
/
global.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/global.h:653:
#define PROT_STDIO(x) () #endif #ifdef __STDC__ #define PROT(x) x #else #define PROT(x) () #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 int getpeername PROT((int, struct sockaddr *, int *)); #endif #ifdef GETHOSTNAME_DECL_MISSING void gethostname PROT((char *,int)); #endif