FastLED 3.9.15
Loading...
Searching...
No Matches

◆ aligned_free()

void fl::aligned_free ( void * ptr)

Definition at line 44 of file cstdlib.cpp.hpp.

44 {
45#if defined(FL_IS_AVR) || defined(FL_IS_ESP8266) || defined(FL_IS_ARM) || defined(FL_IS_APOLLO3)
46 ::free(ptr);
47#elif defined(FL_IS_WIN)
48 ::_aligned_free(ptr);
49#else
50 ::free(ptr);
51#endif
52}
void free(void *ptr)

References free().

+ Here is the call graph for this function: