7 lines
129 B
C
7 lines
129 B
C
#ifndef __UTILS_H__
|
|
#define __UTILS_H__
|
|
#include <stdint.h>
|
|
|
|
uint32_t _udiv64(uint64_t n, uint32_t d);
|
|
|
|
#endif /* __UTILS_H__ */
|