Searched refs:ReallocN (Results 1 – 3 of 3) sorted by relevance
232 erealloc(void *ReallocP, int ReallocN) in erealloc() argument234 if(ReallocN == 0) in erealloc()235 ReallocN = 1; in erealloc()237 ReallocP = emalloc(ReallocN); in erealloc()238 else if(!(ReallocP = realloc(ReallocP, ReallocN))) in erealloc()239 fatal("unable to allocate %d bytes",ReallocN); in erealloc()
2172 erealloc(void *ReallocP, int ReallocN) in erealloc() argument2174 if(ReallocN == 0) in erealloc()2175 ReallocN = 1; in erealloc()2177 ReallocP = emalloc(ReallocN); in erealloc()2178 else if(!(ReallocP = realloc(ReallocP, ReallocN))){ in erealloc()
2204 erealloc(void *ReallocP, int ReallocN) in erealloc() argument2206 if(ReallocN == 0) in erealloc()2207 ReallocN = 1; in erealloc()2209 ReallocP = emalloc(ReallocN); in erealloc()2210 else if(!(ReallocP = realloc(ReallocP, ReallocN))){ in erealloc()