| 982 | #endif |
| 983 | |
| 984 | static void *stbi__malloc(size_t size) |
| 985 | { |
| 986 | return STBI_MALLOC(size); |
| 987 | } |
| 988 | |
| 989 | // stb_image uses ints pervasively, including for offset calculations. |
| 990 | // therefore the largest decoded image size we can support with the |
no outgoing calls
no test coverage detected