]> granicus.if.org Git - php/commitdiff
- Added prototype for breakpoint funcs
authorFelipe Pena <felipensp@gmail.com>
Sun, 10 Nov 2013 18:24:08 +0000 (16:24 -0200)
committerFelipe Pena <felipensp@gmail.com>
Sun, 10 Nov 2013 18:24:08 +0000 (16:24 -0200)
phpdbg_bp.h
phpdbg_help.c

index 87aea82d0f9ac4c30ad0f26bddba273908b6584a..78909d2ae368df47121adfb79e47b9781e7585f5 100644 (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 */
index 978f7ae5c0f475bcf156d0ca17b4f67b0d1020e1..26811d0c395eacba52d4d125e02ee253dc6aef85 100644 (file)
@@ -18,7 +18,6 @@
 */
 
 #include <stdio.h>
-#include <string.h>
 #include "zend.h"
 #include "phpdbg.h"
 #include "phpdbg_help.h"