]> andersk Git - openssh.git/blob - openbsd-compat/bsd-cygwin_util.h
- (djm) Add CVS Id's to files that we have missed
[openssh.git] / openbsd-compat / bsd-cygwin_util.h
1 /*
2  *
3  * cygwin_util.c
4  *
5  * Author: Corinna Vinschen <vinschen@cygnus.com>
6  *
7  * Copyright (c) 2000 Corinna Vinschen <vinschen@cygnus.com>, Duisburg, Germany
8  *                    All rights reserved
9  *
10  * Created: Sat Sep 02 12:17:00 2000 cv
11  *
12  * This file contains functions for forcing opened file descriptors to
13  * binary mode on Windows systems.
14  */
15
16 /* $Id$ */
17
18 #include "config.h"
19
20 #ifdef HAVE_CYGWIN
21
22 int binary_open(const char *filename, int flags, ...);
23 int binary_pipe(int fd[2]);
24 int check_nt_auth(int pwd_authenticated, uid_t uid);
25 int check_ntsec(const char *filename);
26
27 #define open binary_open
28 #define pipe binary_pipe
29
30 #endif /* HAVE_CYGWIN */
This page took 0.036238 seconds and 5 git commands to generate.