diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-05-29 22:51:13 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-05-29 22:51:13 +0000 |
commit | a0ce95e155de68bd5a088a7a539f45aa7134b00b (patch) | |
tree | 4e8c3919e90ce83dbc502b6eeb82668693a46297 /lib/if2ip.h | |
parent | abc751ae1300c7131eb2878a13cec0e24ea2840d (diff) | |
download | curl-a0ce95e155de68bd5a088a7a539f45aa7134b00b.tar.gz |
David LeBlanc's fixes!
Diffstat (limited to 'lib/if2ip.h')
-rw-r--r-- | lib/if2ip.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/if2ip.h b/lib/if2ip.h index 0b658f9d2..e6f73a54a 100644 --- a/lib/if2ip.h +++ b/lib/if2ip.h @@ -42,9 +42,9 @@ #include "setup.h" #if ! defined(WIN32) && ! defined(__BEOS__) -char *if2ip(char *interface); +extern char *if2ip(char *interface, char *buf, int buf_size); #else -#define if2ip(x) NULL +#define if2ip(a,b,c) NULL #endif #endif |