merge libminlib with libc
[minix3.git] / minix / lib / libc / arch / i386 / get_bp.S
blob8b0a2de3be9652989c6d8ec513b3646c76907366
1 /* get_bp.s */
2 /* */
3 /* return EBP in EAX */
4 /* */
5 /* Created:     Sep 7, 1992 by Philip Homburg */
7 #include <machine/asm.h>
9 ENTRY(get_bp)
10         movl    %ebp, %eax
11         ret
13 /* $PchId: get_bp.ack.s,v 1.3 1996/02/23 08:30:52 philip Exp $ */