this repo has no description
at fixPythonPipStalling 20 lines 383 B view raw
1/* 2 * abi.h 3 * 4 * by Ian Ollmann 5 * 6 * Copyright (c) 2007, Apple Inc. All rights reserved. 7 * 8 * Assembly code prefix header for use in armLibm 9 */ 10 11 12#define ENTRY(name) \ 13 .globl _##name; \ 14 .align 2; \ 15 _##name##: 16 17#define PRIVATE_ENTRY(name) \ 18 .private_extern _##name; \ 19 .align 2; \ 20 _##name##: