| 1052 | #endif |
| 1053 | |
| 1054 | static void *stbi__malloc_mad3(int a, int b, int c, int add) |
| 1055 | { |
| 1056 | if (!stbi__mad3sizes_valid(a, b, c, add)) return NULL; |
| 1057 | return stbi__malloc(a*b*c + add); |
| 1058 | } |
| 1059 | |
| 1060 | #if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR) || !defined(STBI_NO_PNM) |
| 1061 | static void *stbi__malloc_mad4(int a, int b, int c, int d, int add) |
no test coverage detected