xref: /haiku/src/system/libroot/os/arch/arm/stack_frame.c (revision 2b76973fa2401f7a5edf68e6470f3d3210cbcff3)
1 /*
2  * Copyright 2012, Haiku, Inc.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		François Revol <revol@free.fr>
7  */
8 
9 #include <SupportDefs.h>
10 
11 #include <libroot_private.h>
12 
13 
14 void*
15 get_stack_frame(void)
16 {
17 	// TODO: Implement!
18 	return NULL;
19 }
20 
21 
22 void*
23 __arch_get_caller(void)
24 {
25 	// TODO: Implement!
26 	return NULL;
27 }
28