diff --git a/NN/stack.c b/NN/stack.c
index a1120338ef3d2510dce6596c0dff45f7dc7860c9..f761e7629dae5cf0ab64e3be68c13e67939a1b2f 100644
--- a/NN/stack.c
+++ b/NN/stack.c
@@ -1,3 +1,5 @@
+#include <stdlib.h>
+
 	static struct node
 	{ int key; struct node *next; };
 	static struct node *head, *z, *t;
diff --git a/NN/stackpair.c b/NN/stackpair.c
index a4da6bfbe0a56831f799993b303f6ecccedc2c0e..a9d835243bc3e889b03d014b3b4cc8fa779993f6 100644
--- a/NN/stackpair.c
+++ b/NN/stackpair.c
@@ -1,7 +1,10 @@
+#include <stdlib.h>
+
 	static struct node
 	{ int key; struct node *next; };
 	static struct node *heada, *za, *ta;
 	static struct node *headb, *zb, *tb;
+
         stackpairinit_() {stackpairinit();}
 	stackpairinit () 
 	   {
@@ -17,6 +20,7 @@
 	     zb->next = zb;
 	     zb->key = 0;
 	   }
+
         stackpairflush_() {stackpairflush();}
 	stackpairflush () 
 	   {
@@ -25,6 +29,7 @@
              free(za);
              free(zb);
 	   }
+
         pushpair_(pa, pb)  int *pa; int *pb; {pushpair(pa, pb);}
 	pushpair (pa, pb)
              int *pa;
@@ -42,6 +47,7 @@
 	     tb->key = vb; tb->next = headb->next;	
 	     headb->next =tb;	
 	   }
+
         poppair_(xa,xb)  int *xa; int *xb; {poppair(xa,xb);}
 	poppair (xa,xb)
              int *xa;
@@ -54,6 +60,7 @@
 	     *xb = tb->key;
 	     free(tb);
 	   }
+
         stackpairempty_(i) int *i; {stackpairempty(i);}
 	stackpairempty (i)
             int *i;