Home
last modified time | relevance | path

Searched refs:VCAST (Results 1 – 2 of 2) sorted by relevance

/ndk/sources/host-tools/sed-4.2.1/
Dbasicdefs.h83 # define VCAST(t) macro
85 # define VCAST(t) (t) macro
89 #define MALLOC(n,t) (VCAST(t *)ck_malloc((n)*sizeof(t)))
90 #define REALLOC(x,n,t) (VCAST(t *)ck_realloc(VCAST(VOID *)(x),(n)*sizeof(t)))
91 #define MEMDUP(x,n,t) (VCAST(t *)ck_memdup(VCAST(VOID *)(x),(n)*sizeof(t)))
92 #define FREE(x) (ck_free(VCAST(VOID *)x))
93 #define MEMCPY(d,s,l) (memcpy(VCAST(VOID *)(d),VCAST(const VOID *)(s),l))
94 #define MEMMOVE(d,s,l) (memmove(VCAST(VOID *)(d),VCAST(const VOID *)(s),l))
DChangeLog438 * sed/basicdefs.h (OB_MALLOC): Turn VCAST into void * cast.
1563 * sed/basicdefs.h: added MEMCPY() macro to hide the VCAST()s
1581 * sed/sed.c(map_file,unmap_file): added VCAST()s to the
2060 * sed/basicdefs.h: define VCAST macros to allow sed to
2067 introduced in making use of the VCAST macro.
2070 pervasively use the new VCAST, MALLOC, REALLOC, MEMDUP,