xref: /csrg-svn/lib/libc/vax/net/DEFS.h (revision 21440)
1*21440Sdist /*
2*21440Sdist  * Copyright (c) 1983 Regents of the University of California.
3*21440Sdist  * All rights reserved.  The Berkeley software License Agreement
4*21440Sdist  * specifies the terms and conditions for redistribution.
5*21440Sdist  *
6*21440Sdist  *	@(#)DEFS.h	5.1 (Berkeley) 05/30/85
7*21440Sdist  */
89720Ssam 
99720Ssam #ifdef PROF
109720Ssam #define	ENTRY(x)	.globl _/**/x; .align 2; _/**/x: .word 0; \
119720Ssam 			.data; 1:; .long 0; .text; moval 1b,r0; jsb mcount
129720Ssam #else
139720Ssam #define	ENTRY(x)	.globl _/**/x; .align 2; _/**/x: .word 0
149720Ssam #endif
15