comparison spandsp-0.0.6pre17/src/msvc/unistd.h @ 4:26cd8f1ef0b1

import spandsp-0.0.6pre17
author Peter Meerwald <pmeerw@cosy.sbg.ac.at>
date Fri, 25 Jun 2010 15:50:58 +0200
parents
children
comparison
equal deleted inserted replaced
3:c6c5a16ce2f2 4:26cd8f1ef0b1
1 /*
2 * SpanDSP - a series of DSP components for telephony
3 *
4 * unistd.h - a fudge for MSVC, which lacks this header
5 *
6 * Written by Steve Underwood <steveu@coppice.org>
7 *
8 * Copyright (C) 2006 Michael Jerris
9 *
10 *
11 * This file is released in the public domain.
12 *
13 */
14
15 #if !defined(_UNISTD_H_)
16 #define _UNISTD_H_
17
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21
22 // Declare this so we don't have to include winsock.h, it causes numerous conflicts.
23 extern int __stdcall gethostname(char * name, int namelen);
24 #pragma comment(lib, "ws2_32.lib")
25
26 extern int getopt(int argc, char *argv[], char *opstring);
27
28 extern char *optarg;
29
30 #ifdef __cplusplus
31 }
32 #endif
33
34 #endif

Repositories maintained by Peter Meerwald, pmeerw@pmeerw.net.