#ifndef LIBAXX_NEW
#define LIBAXX_NEW

#include <stddef.h>

inline void * operator new(size_t size, void * ptr) noexcept {
  return ptr;
}

#endif
