util: remove rz_num_{sin,cos}()

This commit is contained in:
Anton Kochkov 2023-08-11 16:52:04 +08:00 committed by Anton Kochkov
parent 3b3de3b66c
commit 1a06b2d585
2 changed files with 0 additions and 10 deletions

View file

@ -101,8 +101,6 @@ RZ_API int rz_num_str_split(char *str);
RZ_API RzList /*<char *>*/ *rz_num_str_split_list(char *str);
RZ_API void *rz_num_dup(ut64 n);
RZ_API size_t rz_num_base_of_string(RzNum *num, RZ_NONNULL const char *str);
RZ_API double rz_num_cos(double a);
RZ_API double rz_num_sin(double a);
RZ_API double rz_num_get_float(RzNum *num, const char *str);
RZ_API bool rz_num_is_hex_prefix(const char *p);

View file

@ -907,14 +907,6 @@ RZ_API void *rz_num_dup(ut64 n) {
return (void *)hn;
}
RZ_API double rz_num_cos(double a) {
return cos(a);
}
RZ_API double rz_num_sin(double a) {
return sin(a);
}
/**
* \brief Convert the base suffix to the numeric value
*/