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 | 28ddc4e45f216bd4877069e69d143ec3d4945d19 (patch) | |
tree | af56b643106a136e27022a79053ad28fc47dd031 /stdafx.h | |
parent | ed96dcd86896a251e46932873804186aa5db7551 (diff) | |
download | openttd-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.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> |