gdbstub.h 177 B

123456789101112131415
  1. #ifndef GDBSTUB_H
  2. #define GDBSTUB_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. void gdbstub_init();
  7. void gdbstub_redirect_output(int enable);
  8. #ifdef __cplusplus
  9. }
  10. #endif
  11. #endif