summaryrefslogtreecommitdiff
path: root/stdafx.h
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
commit28ddc4e45f216bd4877069e69d143ec3d4945d19 (patch)
treeaf56b643106a136e27022a79053ad28fc47dd031 /stdafx.h
parented96dcd86896a251e46932873804186aa5db7551 (diff)
downloadopenttd-28ddc4e45f216bd4877069e69d143ec3d4945d19.tar.xz
(svn r4522) -Fix: include stdio before stddef; some targets don't like the other way around.
Diffstat (limited to 'stdafx.h')
-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>