1*47919Sbostic /*- 2*47919Sbostic * Copyright (c) 1983 The Regents of the University of California. 3*47919Sbostic * All rights reserved. 421411Sdist * 5*47919Sbostic * %sccs.include.proprietary.c% 6*47919Sbostic * 7*47919Sbostic * @(#)DEFS.h 5.2 (Berkeley) 04/12/91 821411Sdist */ 913791Ssam 1013791Ssam #ifdef PROF 1113791Ssam #define ENTRY(x) .globl _/**/x; .align 2; _/**/x: .word 0; \ 1213791Ssam .data; 1:; .long 0; .text; moval 1b,r0; jsb mcount 1313791Ssam #define ASENTRY(x) .globl x; .align 2; x: .word 0; \ 1413791Ssam .data; 1:; .long 0; .text; moval 1b,r0; jsb mcount 1513791Ssam #else 1613791Ssam #define ENTRY(x) .globl _/**/x; .align 2; _/**/x: .word 0 1713791Ssam #define ASENTRY(x) .globl x; .align 2; x: .word 0 1813791Ssam #endif 19