diff options
author | KUDr <kudr@openttd.org> | 2006-04-18 18:02:52 +0000 |
---|---|---|
committer | KUDr <kudr@openttd.org> | 2006-04-18 18:02:52 +0000 |
commit | 24ef4ce560cc3e0b4e45fe15fae839ce8071bec9 (patch) | |
tree | 11ec2ba419bfc726e345b9fe99669a6dbf5d18ba /stdafx.h | |
parent | 537e4dba9c50fb95fc2c91162b2d22bb02fd618a (diff) | |
download | openttd-24ef4ce560cc3e0b4e45fe15fae839ce8071bec9.tar.xz |
(svn r4470) -Fix: FS#97 — Possible bug in Win64 versions (by michi_cc)
Doesn't fix any known bug, but the code is now bit cleaner. The proper result of subtraction of two pointers is ptrdiff_t.
Diffstat (limited to 'stdafx.h')
-rw-r--r-- | stdafx.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -3,6 +3,7 @@ #ifndef STDAFX_H #define STDAFX_H +#include <stddef.h> #include <stdio.h> #include <string.h> #include <stdlib.h> |