aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2013-07-21 20:26:51 +1000
committerNeil <nyamatongwe@gmail.com>2013-07-21 20:26:51 +1000
commit3ccd74a83b03cb15d8bac7da38da5531d730bfaf (patch)
tree907228e2f9f40460ea1f9d07410e33178f264240 /src
parent3735b76f31e781558637dc20b822e5011e5e2dab (diff)
downloadscintilla-mirror-3ccd74a83b03cb15d8bac7da38da5531d730bfaf.tar.gz
Normalising order of language headers.
Diffstat (limited to 'src')
-rw-r--r--src/AutoComplete.cxx2
-rw-r--r--src/Catalogue.cxx2
-rw-r--r--src/CellBuffer.cxx4
-rw-r--r--src/Decoration.cxx4
-rw-r--r--src/ExternalLexer.cxx2
-rw-r--r--src/RunStyles.cxx4
-rw-r--r--src/XPM.cxx2
7 files changed, 10 insertions, 10 deletions
diff --git a/src/AutoComplete.cxx b/src/AutoComplete.cxx
index d55af8504..c33d0c3a8 100644
--- a/src/AutoComplete.cxx
+++ b/src/AutoComplete.cxx
@@ -10,9 +10,9 @@
#include <stdio.h>
#include <assert.h>
-#include <algorithm>
#include <string>
#include <vector>
+#include <algorithm>
#include "Platform.h"
diff --git a/src/Catalogue.cxx b/src/Catalogue.cxx
index 1a5630443..cd1fafd2d 100644
--- a/src/Catalogue.cxx
+++ b/src/Catalogue.cxx
@@ -7,8 +7,8 @@
#include <stdlib.h>
#include <string.h>
-#include <ctype.h>
#include <stdio.h>
+#include <ctype.h>
#include <stdarg.h>
#include <assert.h>
diff --git a/src/CellBuffer.cxx b/src/CellBuffer.cxx
index e88fd63ae..855c62a1d 100644
--- a/src/CellBuffer.cxx
+++ b/src/CellBuffer.cxx
@@ -5,9 +5,9 @@
// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
-#include <stdio.h>
-#include <string.h>
#include <stdlib.h>
+#include <string.h>
+#include <stdio.h>
#include <stdarg.h>
#include <algorithm>
diff --git a/src/Decoration.cxx b/src/Decoration.cxx
index cda460a48..72c7a331f 100644
--- a/src/Decoration.cxx
+++ b/src/Decoration.cxx
@@ -4,9 +4,9 @@
// Copyright 1998-2007 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
-#include <stdio.h>
-#include <string.h>
#include <stdlib.h>
+#include <string.h>
+#include <stdio.h>
#include <stdarg.h>
#include <algorithm>
diff --git a/src/ExternalLexer.cxx b/src/ExternalLexer.cxx
index bb4846497..d1d26201d 100644
--- a/src/ExternalLexer.cxx
+++ b/src/ExternalLexer.cxx
@@ -6,8 +6,8 @@
// The License.txt file describes the conditions under which this software may be distributed.
#include <stdlib.h>
-#include <stdio.h>
#include <string.h>
+#include <stdio.h>
#include <ctype.h>
#include <assert.h>
diff --git a/src/RunStyles.cxx b/src/RunStyles.cxx
index c2eae869e..ad8d977d6 100644
--- a/src/RunStyles.cxx
+++ b/src/RunStyles.cxx
@@ -4,9 +4,9 @@
// Copyright 1998-2007 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
-#include <stdio.h>
-#include <string.h>
#include <stdlib.h>
+#include <string.h>
+#include <stdio.h>
#include <stdarg.h>
#include <stdexcept>
diff --git a/src/XPM.cxx b/src/XPM.cxx
index d6397afa7..915636de9 100644
--- a/src/XPM.cxx
+++ b/src/XPM.cxx
@@ -5,8 +5,8 @@
// Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
-#include <string.h>
#include <stdlib.h>
+#include <string.h>
#include <vector>
#include <map>