You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
253 B

/*
replacement functions for systems that are missing required library functions
*/
#pragma once
#include <AP_HAL/AP_HAL.h>
#ifndef HAVE_MEMRCHR
void *replace_memrchr(void *s, int c, size_t n);
#define memrchr(s,c,n) replace_memrchr(s,c,n)
#endif