Skip to content

Commit

Permalink
Merge pull request #77 from DataDog/fix/import_paths
Browse files Browse the repository at this point in the history
Standardize import paths
  • Loading branch information
pawelchcki authored Oct 19, 2018
2 parents 66ad7b1 + 7f8dcff commit 1d6d58d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/ext/ddtrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
#include <Zend/zend.h>
#include <Zend/zend_exceptions.h>
#include <php.h>
#include <php/ext/spl/spl_exceptions.h>
#include <php_ini.h>
#include <ext/spl/spl_exceptions.h>
#include <ext/standard/info.h>

#include "compat_zend_string.h"
Expand Down
11 changes: 5 additions & 6 deletions src/ext/dispatch.c
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
#include "php.h"
#include "php/ext/spl/spl_exceptions.h"
#include <php.h>
#include <ext/spl/spl_exceptions.h>

#include "ddtrace.h"
#include "dispatch.h"
#include "php/ext/spl/spl_exceptions.h"

#include "Zend/zend.h"
#include <Zend/zend.h>
#include "compat_zend_string.h"
#include "dispatch_compat.h"

#include "Zend/zend_closures.h"
#include "Zend/zend_exceptions.h"
#include <Zend/zend_closures.h>
#include <Zend/zend_exceptions.h>
#include "debug.h"

#define BUSY_FLAG 1
Expand Down
11 changes: 5 additions & 6 deletions src/ext/dispatch_setup.c
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
#include "php.h"
#include "php/ext/spl/spl_exceptions.h"
#include <php.h>
#include <ext/spl/spl_exceptions.h>

#include "ddtrace.h"
#include "debug.h"
#include "dispatch.h"
#include "php/ext/spl/spl_exceptions.h"

#include "Zend/zend.h"
#include <Zend/zend.h>
#include "compat_zend_string.h"
#include "dispatch_compat.h"

#include "Zend/zend_closures.h"
#include "Zend/zend_exceptions.h"
#include <Zend/zend_closures.h>
#include <Zend/zend_exceptions.h>
ZEND_EXTERN_MODULE_GLOBALS(ddtrace);

user_opcode_handler_t ddtrace_old_fcall_handler;
Expand Down

0 comments on commit 1d6d58d

Please sign in to comment.