diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-12-03 18:51:10 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-12-03 18:51:10 +0000 |
commit | f0207f4f9e44aae2abf391d04bae025e9bae4094 (patch) | |
tree | 5f07ee615437f9c52a005d08b7b5399d2b158c2e /driver.c | |
parent | c37e99fbb51fc1daac738d3eaf67e7b4dc311b6f (diff) | |
download | fetchmail-f0207f4f9e44aae2abf391d04bae025e9bae4094.tar.gz fetchmail-f0207f4f9e44aae2abf391d04bae025e9bae4094.tar.bz2 fetchmail-f0207f4f9e44aae2abf391d04bae025e9bae4094.zip |
Include alloca.h when you have it.
svn path=/trunk/; revision=596
Diffstat (limited to 'driver.c')
-rw-r--r-- | driver.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -22,6 +22,9 @@ #else #include <varargs.h> #endif +#if defined(HAVE_ALLOCA_H) +#include <alloca.h> +#endif #include <sys/time.h> #include <signal.h> |