From: Felipe Pena Date: Sun, 10 Nov 2013 18:24:08 +0000 (-0200) Subject: - Added prototype for breakpoint funcs X-Git-Tag: php-5.6.0alpha1~110^2~518^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7752077b63af0a9c52a46b8a8e2aeb8796bec3e7;p=php - Added prototype for breakpoint funcs --- diff --git a/phpdbg_bp.h b/phpdbg_bp.h index 87aea82d0f..78909d2ae3 100644 --- a/phpdbg_bp.h +++ b/phpdbg_bp.h @@ -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 */ diff --git a/phpdbg_help.c b/phpdbg_help.c index 978f7ae5c0..26811d0c39 100644 --- a/phpdbg_help.c +++ b/phpdbg_help.c @@ -18,7 +18,6 @@ */ #include -#include #include "zend.h" #include "phpdbg.h" #include "phpdbg_help.h"