1 /*
2  * (c) 2008-2009 Adam Lackorzynski <adam@os.inf.tu-dresden.de>
3  *     economic rights: Technische Universität Dresden (Germany)
4  * This file is part of TUD:OS and distributed under the terms of the
5  * GNU Lesser General Public License 2.1.
6  * Please see the COPYING-LGPL-2.1 file for details.
7  */
8 #include <l4/util/backtrace.h>
9 
10 int
l4util_backtrace(void ** pc_array,int max)11 l4util_backtrace(void **pc_array, int max)
12 {
13   (void)pc_array;
14   (void)max;
15   return 0;
16 }
17