Bug 891551 - Part 1: A couple of include-what-you-use fixes to the pre-existing code. r=ekr

This commit is contained in:
Byron Campen [:bwc] 2014-04-01 13:13:59 -07:00
parent ecbbe92812
commit c32065d176
2 changed files with 3 additions and 0 deletions

View File

@ -44,6 +44,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#endif
#include "transport_addr.h"
#include "csi_platform.h"
#ifdef __cplusplus
#define restrict

View File

@ -42,6 +42,8 @@
#define R_MALLOC_X 2
#include "r_types.h"
void *r_malloc(int type, size_t size);
void *r_malloc_compat(size_t size);
void *r_calloc(int type,size_t number,size_t size);