summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2006-04-22 10:12:14 +0000
committertruelight <truelight@openttd.org>2006-04-22 10:12:14 +0000
commit919e0b80a77fa86286b0c9e3b55177f2badb5f52 (patch)
treeaf56b643106a136e27022a79053ad28fc47dd031
parent580f364cc96b426c38f0c1ae48f58f666492d89d (diff)
downloadopenttd-919e0b80a77fa86286b0c9e3b55177f2badb5f52.tar.xz
(svn r4522) -Fix: include stdio before stddef; some targets don't like the other way around.
-rw-r--r--stdafx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdafx.h b/stdafx.h
index a8600d9b5..f18ac11ec 100644
--- a/stdafx.h
+++ b/stdafx.h
@@ -3,8 +3,8 @@
#ifndef STDAFX_H
#define STDAFX_H
-#include <stddef.h>
#include <stdio.h>
+#include <stddef.h>
#include <string.h>
#include <stdlib.h>