diff options
author | Yang Tse <yangsita@gmail.com> | 2007-04-25 03:00:10 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-04-25 03:00:10 +0000 |
commit | 94b253fde793a7419f0eafe16b24f440d344a1c9 (patch) | |
tree | 535b51278396773021d65c7df0a81dd7a359d7a0 /lib/splay.c | |
parent | 61d7e720a58bef33e46b300c70ad88793801e077 (diff) | |
download | curl-94b253fde793a7419f0eafe16b24f440d344a1c9.tar.gz |
Steve Little's fixes to allow compilation on VMS 64-bit mode
Diffstat (limited to 'lib/splay.c')
-rw-r--r-- | lib/splay.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/splay.c b/lib/splay.c index 9fb66c76a..acfa373e2 100644 --- a/lib/splay.c +++ b/lib/splay.c @@ -21,6 +21,8 @@ * $Id$ ***************************************************************************/ +#include "setup.h" + #include <stdio.h> #include <stdlib.h> @@ -364,7 +366,7 @@ void Curl_splayprint(struct Curl_tree * t, int d, char output) /* A sample use of these functions. Start with the empty tree, insert some stuff into it, and then delete it */ -int main(int argc, char **argv) +int main(int argc, argv_item_t argv[]) { struct Curl_tree *root, *t; void *ptrs[MAX]; |