repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libroot/posix/stdio: Remove unused portions.
[haiku.git]
/
src
/
system
/
libroot
/
os
/
arch
/
arm
/
stack_frame.c
blob
30223cbcea64348112326cde0d726e189622dec9
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
}