Skip to content

Commit

Permalink
perf/micro: fix include order for AIX, bug#89354
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Haubenwallner authored and Bryce Harrington committed Mar 6, 2015
1 parent 0916d58 commit 15c427b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion perf/micro/disjoint.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
#include <assert.h>
#include "cairo-perf.h"
#include <assert.h>

#define STEP 5

Expand Down
2 changes: 1 addition & 1 deletion perf/micro/hatching.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
#include <assert.h>
#include "cairo-perf.h"
#include <assert.h>


#define STEP 5
Expand Down
2 changes: 1 addition & 1 deletion perf/micro/pattern_create_radial.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
* presents a somewhat realistic use-case (although the RADIALS_COUNT
* isn't very realistic).
*/
#include <time.h>
#include "cairo-perf.h"
#include <time.h>

#define RADIALS_COUNT (10000)

Expand Down
2 changes: 1 addition & 1 deletion perf/micro/spiral.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
#include <assert.h>
#include "cairo-perf.h"
#include <assert.h>

#define MAX_SEGMENTS 2560

Expand Down

0 comments on commit 15c427b

Please sign in to comment.