xref: /haiku/src/system/libroot/os/arch/arm/stack_frame.c (revision 016cc668030a6d08daf8792e14de8512fdf0e5b8)
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*
get_stack_frame(void)15 get_stack_frame(void)
16 {
17 	// TODO: Implement!
18 	return NULL;
19 }
20 
21