File: unixio.h

package info (click to toggle)
muscle 3.52-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,196 kB
  • ctags: 1,763
  • sloc: cpp: 21,335; xml: 185; makefile: 104
file content (11 lines) | stat: -rw-r--r-- 180 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
#ifdef	WIN32
#include <fcntl.h>
#include <io.h>
#else
#include <fcntl.h>
#include <unistd.h>
#endif

#if	!defined(WIN32) && !defined(O_BINARY)
#define	O_BINARY	0
#endif