home: hub: 9ficl

Download patch

ref: f1bd0b3981ca9582a57ce69435285ba93efe1e8e
parent: e1b4395eea07446a8338a1179ec1dda5f0dd65e3
author: asau <asau@ficl.sf.net>
date: Thu Dec 2 16:14:12 CST 2010

Pull in stdint.h declarations.

--- a/dictionary.c
+++ b/dictionary.c
@@ -3,7 +3,7 @@
 ** Forth Inspired Command Language - dictionary methods
 ** Author: John Sadler (john_sadler@alum.mit.edu)
 ** Created: 19 July 1997
-** $Id: dictionary.c,v 1.5 2010/12/02 13:56:43 asau Exp $
+** $Id: dictionary.c,v 1.6 2010/12/02 22:14:12 asau Exp $
 *******************************************************************/
 /*
 ** This file implements the dictionary -- Ficl's model of 
@@ -52,6 +52,7 @@
 */
 
 #include <ctype.h>
+#include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
--- a/float.c
+++ b/float.c
@@ -4,7 +4,7 @@
 ** ANS Forth FLOAT word-set written in C
 ** Author: Guy Carver & John Sadler (john_sadler@alum.mit.edu)
 ** Created: Apr 2001
-** $Id: float.c,v 1.12 2010/11/01 14:10:27 asau Exp $
+** $Id: float.c,v 1.13 2010/12/02 22:14:12 asau Exp $
 *******************************************************************/
 /*
 ** Copyright (c) 1997-2001 John Sadler (john_sadler@alum.mit.edu)
@@ -42,6 +42,7 @@
 */
 
 #include <stdlib.h>
+#include <stdint.h>
 #include <stdio.h>
 #include <string.h>
 #include <ctype.h>
--- a/tools.c
+++ b/tools.c
@@ -3,7 +3,7 @@
 ** Forth Inspired Command Language - programming tools
 ** Author: John Sadler (john_sadler@alum.mit.edu)
 ** Created: 20 June 2000
-** $Id: tools.c,v 1.15 2010/12/02 13:56:43 asau Exp $
+** $Id: tools.c,v 1.16 2010/12/02 22:14:12 asau Exp $
 *******************************************************************/
 /*
 ** Copyright (c) 1997-2001 John Sadler (john_sadler@alum.mit.edu)
@@ -55,6 +55,7 @@
 */
 
 #include <stdlib.h>
+#include <stdint.h>
 #include <stdio.h>          /* sprintf */
 #include <string.h>
 #include <ctype.h>