gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 2 of 2 for funcall:Kcalloc from t2ex (0.00 seconds)
t2ex
bsd_source/t2ex/network/net/include/netbsd/stdlib.h - 10.3KB - 357 lines
126: void* Kcalloc( size_t nmemb, size_t size );
127: #define calloc(nmemb,size) Kcalloc(nmemb,size)
128: #endif
t2ex_source/t2ex/load/src/pminfo.c - 4.0KB - 139 lines
76:         /* Allocate control block for program module information */
77:         pmInfoTable = (ProgInfo*)Kcalloc(n, sizeof(ProgInfo));
78:         if ( pmInfoTable == NULL ) {