]> git.gag.com Git - fw/sdcc/commitdiff
* support/librarian/sdcclib.c: moved include <limits.h> up to enable
authorMaartenBrock <MaartenBrock@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Fri, 28 Apr 2006 13:06:43 +0000 (13:06 +0000)
committerMaartenBrock <MaartenBrock@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Fri, 28 Apr 2006 13:06:43 +0000 (13:06 +0000)
  compilation with MSVC 2005 Express Edition (VC8)

git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4132 4a8a32a2-be11-0410-ad9d-d568d2c75423

ChangeLog
support/librarian/sdcclib.c

index 7ccdf670c5670fc4791e35a3afe244ad27a7deed..04eb4cb89fb49e6ef73c2b55d73a3c62e80dfe11 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
+
+       * support/librarian/sdcclib.c: moved include <limits.h> up to enable
+         compilation with MSVC 2005 Express Edition (VC8)
+
 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
 
        * device/lib/Makefile: fixed build of gbz80 lib
index 7598431fa4f4b52f35d18dec83af208fb480fdc2..70d1bda67935220c6c80b2e33f7be74a27509d76 100644 (file)
@@ -15,11 +15,11 @@ You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
 
+#define _POSIX_
+#include <limits.h>
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
-#define _POSIX_
-#include <limits.h>
 #if !defined(__BORLANDC__) && !defined(_MSC_VER)
 #include <unistd.h>
 #endif