]> mj.ucw.cz Git - libucw.git/commitdiff
Added a lot of missing #include <alloca.h>'s.
authorMartin Mares <mj@ucw.cz>
Sat, 27 Sep 2003 19:43:36 +0000 (19:43 +0000)
committerMartin Mares <mj@ucw.cz>
Sat, 27 Sep 2003 19:43:36 +0000 (19:43 +0000)
lib/log.c
lib/pagecache.c
lib/shell/config.c
lib/url.c

index 882741cf48dfcde5bafd59e45eb784bc1f78ef8d..d83a84e4bc43549ac64eb8a7faf196fdb97d6828 100644 (file)
--- a/lib/log.c
+++ b/lib/log.c
@@ -16,6 +16,7 @@
 #include <fcntl.h>
 #include <unistd.h>
 #include <time.h>
+#include <alloca.h>
 
 static char log_progname[32], *log_name_patt, *log_name;
 static pid_t log_pid;
index 955b97c18af4a51b306287b265b3bcb3e71bf039..6a2643dfae7547caceae0098ec926b076fd8f141 100644 (file)
@@ -16,6 +16,7 @@
 #include <string.h>
 #include <fcntl.h>
 #include <unistd.h>
+#include <alloca.h>
 
 struct page_cache {
   list free_pages;                     /* LRU queue of free non-dirty pages */
index 5ff0c30da3efff402e3fc0c02214c3b61d23e2a0..e00ca8f4f595f8ad944ccbdd8150a88580cb7354 100644 (file)
@@ -21,6 +21,7 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
+#include <alloca.h>
 
 static struct cfitem *items;
 static byte *flags;
index 65f1c0aad8feb297a6314644521de597fcfa8894..d98c3a79832edda5e780ab03445a2b8fb9ffce35 100644 (file)
--- a/lib/url.c
+++ b/lib/url.c
@@ -16,6 +16,7 @@
 #include <string.h>
 #include <stdlib.h>
 #include <stdio.h>
+#include <alloca.h>
 
 /* Configuration */