Home | History | Annotate | Download | only in android
      1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #ifndef FAKE_EXECINFO_H
      6 #define FAKE_EXECINFO_H
      7 
      8 int backtrace(void **array, int size);
      9 
     10 char **backtrace_symbols(void *const *array, int size);
     11 
     12 void backtrace_symbols_fd (void *const *array, int size, int fd);
     13 
     14 #endif
     15