* @brief Print a string to stderr. */
| 205 | * @brief Print a string to stderr. |
| 206 | */ |
| 207 | static inline void print_error( |
| 208 | const char* format |
| 209 | ) { |
| 210 | fprintf(stderr, "%s", format); |
| 211 | } |
| 212 | |
| 213 | /** |
| 214 | * @brief Validate CPU ISA support meets the requirements of this build of the library. |
no outgoing calls
no test coverage detected