diff options
author | truelight <truelight@openttd.org> | 2006-04-22 10:12:14 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2006-04-22 10:12:14 +0000 |
commit | 919e0b80a77fa86286b0c9e3b55177f2badb5f52 (patch) | |
tree | af56b643106a136e27022a79053ad28fc47dd031 | |
parent | 580f364cc96b426c38f0c1ae48f58f666492d89d (diff) | |
download | openttd-919e0b80a77fa86286b0c9e3b55177f2badb5f52.tar.xz |
(svn r4522) -Fix: include stdio before stddef; some targets don't like the other way around.
-rw-r--r-- | stdafx.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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> |