~ubuntu-branches/debian/sid/antpm/sid

« back to all changes in this revision

Viewing changes to src/gant/antlib.c

  • Committer: Package Import Robot
  • Author(s): Christian Perrier, RALOVICH, Kristof
  • Date: 2014-04-08 06:57:24 UTC
  • Revision ID: package-import@ubuntu.com-20140408065724-01zptgrvkpc9o9e5
Tags: 1.16-2
* Team upload

[ RALOVICH, Kristof ]
* fix kFreebsd,Hurd FTBFS
* don't provide garmin-ant-downloader package for now
* rename garmin-ant-downloader to antpm-garmin-ant-downloader
* build antpm-dbg package too

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* copyright 2008 paul@ant.sbrk.co.uk. released under GPLv3 */
2
2
/* vers 0.6t */
 
3
 
 
4
#define _XOPEN_SOURCE 500
 
5
#define _BSD_SOURCE
 
6
#if defined(__GNU__) /* Hurd */
 
7
# define _GNU_SOURCE
 
8
#endif
3
9
#include <unistd.h>
4
10
#include <sys/types.h>
5
11
#include <sys/stat.h>
9
15
#include <pthread.h>
10
16
#include <termios.h>
11
17
#include <stdlib.h>
 
18
#include <strings.h> /* bzero */
 
19
#include <sys/select.h> /* fd_set */
12
20
 
13
21
#define __declspec(X)
14
22