12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef ARCH_UA_ARCHITECTURE_BASE_H
- #define ARCH_UA_ARCHITECTURE_BASE_H
- #ifdef UA_sleep_ms
- void UA_sleep_ms(unsigned long ms);
- #endif
- #ifdef UA_malloc
- void* UA_malloc(unsigned long size);
- #endif
- #ifdef UA_calloc
- void* UA_calloc(unsigned long num, unsigned long size);
- #endif
- #ifdef UA_realloc
- void* UA_realloc(void *ptr, unsigned long new_size);
- #endif
- #ifdef UA_free
- void UA_free(void* ptr);
- #endif
- #endif
|