Clone of mesa.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

imports.h 149B

123456
  1. #include <assert.h>
  2. #include <stdlib.h>
  3. #define _mesa_malloc(x) malloc(x)
  4. #define _mesa_free(x) free(x)
  5. #define _mesa_calloc(x) calloc(1,x)