2021-08-08 04:08:33 +00:00
|
|
|
#ifndef MPALLOC_H
|
|
|
|
#define MPALLOC_H
|
2021-08-12 07:42:14 +00:00
|
|
|
#include "third_party/python/Modules/_decimal/libmpdec/mpdecimal.h"
|
|
|
|
/* clang-format off */
|
2021-08-08 04:08:33 +00:00
|
|
|
|
|
|
|
/* Internal header file: all symbols have local scope in the DSO */
|
|
|
|
MPD_PRAGMA(MPD_HIDE_SYMBOLS_START)
|
|
|
|
|
|
|
|
int mpd_switch_to_dyn(mpd_t *result, mpd_ssize_t size, uint32_t *status);
|
|
|
|
int mpd_switch_to_dyn_zero(mpd_t *result, mpd_ssize_t size, uint32_t *status);
|
|
|
|
int mpd_realloc_dyn(mpd_t *result, mpd_ssize_t size, uint32_t *status);
|
|
|
|
|
|
|
|
MPD_PRAGMA(MPD_HIDE_SYMBOLS_END) /* restore previous scope rules */
|
|
|
|
|
|
|
|
#endif
|