~ubuntu-branches/ubuntu/hardy/curl/hardy-updates

« back to all changes in this revision

Viewing changes to docs/examples/synctime.c

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2006-10-30 10:56:48 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20061030105648-uo8q8w9xklb40b4k
Tags: 7.15.5-1ubuntu1
* Merge from debian unstable. Remaining Ubuntu changes:
  - debian/control: Drop libdb4.2 build dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 *                            | (__| |_| |  _ <| |___
6
6
 *                             \___|\___/|_| \_\_____|
7
7
 *
8
 
 * $Id: synctime.c,v 1.1 2006/02/04 18:08:54 bagder Exp $
 
8
 * $Id: synctime.c,v 1.2 2006-07-05 23:10:38 yangtse Exp $
9
9
 *
10
10
 * This example code only builds as-is on Windows.
11
11
 *
59
59
 
60
60
#include <stdio.h>
61
61
#include <time.h>
 
62
#ifndef __CYGWIN__
62
63
#include <windows.h>
 
64
#endif
63
65
#include <curl/curl.h>
64
66
 
65
67