- Added prototype for breakpoint funcs

This commit is contained in:
Felipe Pena 2013-11-10 16:24:08 -02:00
parent ddf5c42e2d
commit 7752077b63
2 changed files with 3 additions and 1 deletions

View File

@ -36,4 +36,7 @@ typedef struct _phpdbg_breaksymbol_t {
long opline_num;
} phpdbg_breaksymbol_t;
void phpdbg_set_breakpoint_file(const char*, const char* TSRMLS_DC);
void phpdbg_set_breakpoint_symbol(const char*, const char* TSRMLS_DC);
#endif /* PHPDBG_BP_H */

View File

@ -18,7 +18,6 @@
*/
#include <stdio.h>
#include <string.h>
#include "zend.h"
#include "phpdbg.h"
#include "phpdbg_help.h"