mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-22 07:37:38 +01:00
Stop including `memory.h'
I am unable to find any reference to `memory.h' in the C99 and C11 committee drafts, so include `string.h' instead when we need memset() or similar.
This commit is contained in:
parent
58354c94d7
commit
ded94b98ff
10 changed files with 3 additions and 10 deletions
|
@ -25,7 +25,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||||
#ifndef unwind_i_h
|
#ifndef unwind_i_h
|
||||||
#define unwind_i_h
|
#define unwind_i_h
|
||||||
|
|
||||||
#include <memory.h>
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#include <libunwind-arm.h>
|
#include <libunwind-arm.h>
|
||||||
|
|
|
@ -26,7 +26,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||||
#ifndef unwind_i_h
|
#ifndef unwind_i_h
|
||||||
#define unwind_i_h
|
#define unwind_i_h
|
||||||
|
|
||||||
#include <memory.h>
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#include <libunwind-hppa.h>
|
#include <libunwind-hppa.h>
|
||||||
|
|
|
@ -26,7 +26,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||||
#ifndef unwind_i_h
|
#ifndef unwind_i_h
|
||||||
#define unwind_i_h
|
#define unwind_i_h
|
||||||
|
|
||||||
#include <memory.h>
|
#include <string.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
|
|
||||||
#include <libunwind-ia64.h>
|
#include <libunwind-ia64.h>
|
||||||
|
|
|
@ -25,7 +25,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||||
#ifndef unwind_i_h
|
#ifndef unwind_i_h
|
||||||
#define unwind_i_h
|
#define unwind_i_h
|
||||||
|
|
||||||
#include <memory.h>
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#include <libunwind-mips.h>
|
#include <libunwind-mips.h>
|
||||||
|
|
|
@ -28,7 +28,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||||
#ifndef unwind_i_h
|
#ifndef unwind_i_h
|
||||||
#define unwind_i_h
|
#define unwind_i_h
|
||||||
|
|
||||||
#include <memory.h>
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#include <libunwind-ppc32.h>
|
#include <libunwind-ppc32.h>
|
||||||
|
|
|
@ -28,7 +28,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||||
#ifndef unwind_i_h
|
#ifndef unwind_i_h
|
||||||
#define unwind_i_h
|
#define unwind_i_h
|
||||||
|
|
||||||
#include <memory.h>
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#include <libunwind-ppc64.h>
|
#include <libunwind-ppc64.h>
|
||||||
|
|
|
@ -26,7 +26,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||||
#ifndef unwind_i_h
|
#ifndef unwind_i_h
|
||||||
#define unwind_i_h
|
#define unwind_i_h
|
||||||
|
|
||||||
#include <memory.h>
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#include <libunwind-x86.h>
|
#include <libunwind-x86.h>
|
||||||
|
|
|
@ -28,7 +28,6 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||||
#ifndef unwind_i_h
|
#ifndef unwind_i_h
|
||||||
#define unwind_i_h
|
#define unwind_i_h
|
||||||
|
|
||||||
#include <memory.h>
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#include <libunwind-x86_64.h>
|
#include <libunwind-x86_64.h>
|
||||||
|
|
|
@ -21,7 +21,7 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||||
|
|
||||||
#include <memory.h>
|
#include <string.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
|
@ -21,7 +21,7 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||||
|
|
||||||
#include <memory.h>
|
#include <string.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
Loading…
Reference in a new issue