libvoipcodecs 0.0.1
unistd.h
1/*
2 * SpanDSP - a series of DSP components for telephony
3 *
4 * inttypes.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(_INTTYPES_H_)
16#define _INTTYPES_H_
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22#define open _open
23#define write _write
24
25extern int gethostname (char *name, size_t len);
26
27#ifdef __cplusplus
28}
29#endif
30
31#endif