~ubuntu-branches/ubuntu/vivid/curl/vivid

« back to all changes in this revision

Viewing changes to lib/inet_pton.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Schuldei
  • Date: 2009-04-02 23:35:45 UTC
  • mto: (1.2.1 upstream) (3.2.3 sid)
  • mto: This revision was merged to the branch mainline in revision 38.
  • Revision ID: james.westby@ubuntu.com-20090402233545-geixkwhe3izccjt7
Tags: upstream-7.19.4
ImportĀ upstreamĀ versionĀ 7.19.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21
21
 * KIND, either express or implied.
22
22
 *
23
 
 * $Id: inet_pton.h,v 1.7 2005/11/28 20:21:36 bagder Exp $
 
23
 * $Id: inet_pton.h,v 1.8 2008-09-24 19:13:02 yangtse Exp $
24
24
 ***************************************************************************/
25
25
 
26
26
#include "setup.h"
28
28
int Curl_inet_pton(int, const char *, void *);
29
29
 
30
30
#ifdef HAVE_INET_PTON
31
 
 
32
 
#if defined(HAVE_NO_INET_PTON_PROTO)
33
 
int inet_pton(int af, const char *src, void *dst);
34
 
#endif
35
 
 
36
31
#ifdef HAVE_ARPA_INET_H
37
32
#include <arpa/inet.h>
38
33
#endif